diff --git a/adafruit_pybadger/pybadger_base.py b/adafruit_pybadger/pybadger_base.py index fbd2824..3155ae7 100755 --- a/adafruit_pybadger/pybadger_base.py +++ b/adafruit_pybadger/pybadger_base.py @@ -145,7 +145,7 @@ def _create_badge_background(self): self._created_background = True if self._background_group is None: - self._background_group = displayio.Group(max_size=30) + self._background_group = displayio.Group() self.display.show(self._background_group) @@ -213,7 +213,7 @@ def _badge_background( ): """Populate the background color with a rectangle color block over it as the background for a name badge.""" - background_group = displayio.Group(max_size=30) + background_group = displayio.Group() color_bitmap = displayio.Bitmap(self.display.width, self.display.height, 1) color_palette = displayio.Palette(1) color_palette[0] = background_color @@ -512,7 +512,7 @@ def show_business_card( ) business_card_label_groups.append(email_two_group) - business_card_splash = displayio.Group(max_size=4) + business_card_splash = displayio.Group() self.display.show(business_card_splash) with open(image_name, "rb") as file_name: on_disk_bitmap = displayio.OnDiskBitmap(file_name)