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.
1 parent bdfc422 commit b593468Copy full SHA for b593468
adafruit_cursorcontrol/cursorcontrol.py
@@ -44,7 +44,7 @@ class Cursor:
44
display = board.DISPLAY
45
46
# Create the display context
47
- splash = displayio.Group(max_size=22)
+ splash = displayio.Group()
48
49
# initialize the mouse cursor object
50
mouse_cursor = Cursor(display, display_group=splash)
@@ -227,7 +227,7 @@ def cursor_bitmap(self, bmp):
227
def generate_cursor(self, bmp):
228
"""Generates a cursor icon"""
229
self._is_deinited()
230
- self._cursor_grp = displayio.Group(max_size=1, scale=self._scale)
+ self._cursor_grp = displayio.Group(scale=self._scale)
231
self._cur_palette = displayio.Palette(3)
232
self._cur_palette.make_transparent(0)
233
self._cur_palette[1] = 0xFFFFFF
0 commit comments