File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def __init__(
103
103
** kwargs ,
104
104
):
105
105
106
- super ().__init__ (** kwargs , max_size = 4 )
106
+ super ().__init__ (** kwargs )
107
107
# Group elements for the FlipInput.
108
108
# 0. The text
109
109
# 1. The group holding the temporary scroll bitmap
@@ -235,8 +235,7 @@ def __init__(
235
235
self ._update_position () # call Widget superclass function to reposition
236
236
237
237
self ._animation_group = displayio .Group (
238
- max_size = 1 ,
239
- scale = self ._font_scale ,
238
+ scale = self ._font_scale
240
239
) # holds the animation bitmap
241
240
# self._animation_group.x = -1 * left * (1)
242
241
# self._animation_group.y = -1 * top * (1)
Original file line number Diff line number Diff line change 92
92
my_flip3 .value = "2015" # or set the value based on a string that is in the value_list
93
93
94
94
# Create the group to display and append the FlipInput widgets
95
- my_group = displayio .Group (max_size = 3 )
95
+ my_group = displayio .Group ()
96
96
my_group .append (my_flip1 )
97
97
my_group .append (my_flip2 )
98
98
my_group .append (my_flip3 )
You can’t perform that action at this time.
0 commit comments