Skip to content

Commit 4f358cf

Browse files
Remove max_size usage with displayio.Group
1 parent dd04d13 commit 4f358cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PyPortal_ISS_Tracker/pp_iss_tracker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646
trail_bitmap = displayio.Bitmap(3, 3, 1)
4747
trail_palette = displayio.Palette(1)
4848
trail_palette[0] = TRAIL_COLOR
49-
trail = displayio.Group(max_size=TRAIL_LENGTH)
49+
trail = displayio.Group()
5050
pyportal.splash.append(trail)
5151

5252
# ISS location marker
53-
marker = displayio.Group(max_size=MARK_THICKNESS)
53+
marker = displayio.Group()
5454
for r in range(MARK_SIZE - MARK_THICKNESS, MARK_SIZE):
5555
marker.append(Circle(0, 0, r, outline=MARK_COLOR))
5656
pyportal.splash.append(marker)

0 commit comments

Comments
 (0)