File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ def _create_badge_background(self):
145
145
self ._created_background = True
146
146
147
147
if self ._background_group is None :
148
- self ._background_group = displayio .Group (max_size = 30 )
148
+ self ._background_group = displayio .Group ()
149
149
150
150
self .display .show (self ._background_group )
151
151
@@ -213,7 +213,7 @@ def _badge_background(
213
213
):
214
214
"""Populate the background color with a rectangle color block over it as the background for
215
215
a name badge."""
216
- background_group = displayio .Group (max_size = 30 )
216
+ background_group = displayio .Group ()
217
217
color_bitmap = displayio .Bitmap (self .display .width , self .display .height , 1 )
218
218
color_palette = displayio .Palette (1 )
219
219
color_palette [0 ] = background_color
@@ -512,7 +512,7 @@ def show_business_card(
512
512
)
513
513
business_card_label_groups .append (email_two_group )
514
514
515
- business_card_splash = displayio .Group (max_size = 4 )
515
+ business_card_splash = displayio .Group ()
516
516
self .display .show (business_card_splash )
517
517
with open (image_name , "rb" ) as file_name :
518
518
on_disk_bitmap = displayio .OnDiskBitmap (file_name )
You can’t perform that action at this time.
0 commit comments