File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def __init__(
103103 ** kwargs ,
104104 ):
105105
106- super ().__init__ (** kwargs , max_size = 4 )
106+ super ().__init__ (** kwargs )
107107 # Group elements for the FlipInput.
108108 # 0. The text
109109 # 1. The group holding the temporary scroll bitmap
@@ -235,8 +235,7 @@ def __init__(
235235 self ._update_position () # call Widget superclass function to reposition
236236
237237 self ._animation_group = displayio .Group (
238- max_size = 1 ,
239- scale = self ._font_scale ,
238+ scale = self ._font_scale
240239 ) # holds the animation bitmap
241240 # self._animation_group.x = -1 * left * (1)
242241 # self._animation_group.y = -1 * top * (1)
Original file line number Diff line number Diff line change 9292my_flip3 .value = "2015" # or set the value based on a string that is in the value_list
9393
9494# Create the group to display and append the FlipInput widgets
95- my_group = displayio .Group (max_size = 3 )
95+ my_group = displayio .Group ()
9696my_group .append (my_flip1 )
9797my_group .append (my_flip2 )
9898my_group .append (my_flip3 )
You can’t perform that action at this time.
0 commit comments