Skip to content

Commit 9292142

Browse files
Remove max_size parameter from examples
1 parent ce9fdd3 commit 9292142

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/cursorcontrol_buttons_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
display = board.DISPLAY
1515

1616
# Create the display context
17-
splash = displayio.Group(max_size=22)
17+
splash = displayio.Group()
1818

1919
# Use the built-in system font
2020
font = terminalio.FONT

examples/cursorcontrol_custom_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
display = board.DISPLAY
1212

1313
# Create the display context
14-
splash = displayio.Group(max_size=5)
14+
splash = displayio.Group()
1515

1616
# initialize the mouse cursor object
1717
bmp = displayio.Bitmap(20, 20, 3)

examples/cursorcontrol_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
display = board.DISPLAY
1212

1313
# Create the display context
14-
splash = displayio.Group(max_size=5)
14+
splash = displayio.Group()
1515

1616
# initialize the mouse cursor object
1717
mouse_cursor = Cursor(display, display_group=splash)

0 commit comments

Comments
 (0)