We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 429ea45 + 776bb7f commit 6c6dcb0Copy full SHA for 6c6dcb0
MagTag_Weather/magtag_weather.py
@@ -99,7 +99,7 @@ def make_banner(x=0, y=0):
99
day_temp.anchor_point = (0, 0.5)
100
day_temp.anchored_position = (50, 10)
101
102
- group = displayio.Group(max_size=3, x=x, y=y)
+ group = displayio.Group(x=x, y=y)
103
group.append(day_of_week)
104
group.append(icon)
105
group.append(day_temp)
@@ -217,7 +217,7 @@ def go_to_sleep(current_time):
217
today_sunset.anchor_point = (0, 0.5)
218
today_sunset.anchored_position = (130, 117)
219
220
-today_banner = displayio.Group(max_size=10)
+today_banner = displayio.Group()
221
today_banner.append(today_date)
222
today_banner.append(city_name)
223
today_banner.append(today_icon)
0 commit comments