Skip to content

Commit aacdfff

Browse files
authored
Merge pull request #1668 from lesamouraipourpre/tides
MagTag TIdes: Update for CP7
2 parents 6c6dcb0 + 99d1812 commit aacdfff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MagTag_Tides/magtag_tides_land_lp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@
6363
plot_y_neg.anchor_point = (1.0, 0.5)
6464
plot_y_neg.anchored_position = (178, 92)
6565

66-
plot_y_labels = displayio.Group(max_size=2)
66+
plot_y_labels = displayio.Group()
6767
plot_y_labels.append(plot_y_pos)
6868
plot_y_labels.append(plot_y_neg)
6969

7070
# ----------------------------
7171
# Date label
7272
# ----------------------------
73-
date_label = displayio.Group(max_size=5)
73+
date_label = displayio.Group()
7474
date_text = [label.Label(DATE_FONT, text="A", color=0xFFFFFF) for _ in range(5)]
7575
y_offset = 8
7676
for text in date_text:
@@ -82,7 +82,7 @@
8282
# ----------------------------
8383
# HiLo Times and Icons
8484
# ----------------------------
85-
tide_info = displayio.Group(max_size=8)
85+
tide_info = displayio.Group()
8686

8787
hilo_times = [label.Label(TIME_FONT, text="12:34 P", color=0x000000) for _ in range(4)]
8888
y_offset = 18

0 commit comments

Comments
 (0)