Skip to content

Commit 7feec8d

Browse files
authored
Merge pull request #1742 from lesamouraipourpre/iss-tracker
PyPortal ISS Tracker: Update for CP7
2 parents f79515d + 4f358cf commit 7feec8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)