-
Notifications
You must be signed in to change notification settings - Fork 358
Closed
Labels
guiRelated to arcade GUI (sub module arcade.gui)Related to arcade GUI (sub module arcade.gui)
Description
arcade/arcade/gui/widgets/dropdown.py
Lines 64 to 66 in 2381082
| self._default_button = UIFlatButton( | |
| text=self._value, width=self.width, height=self.height | |
| ) |
self._value might be None, but UIFlatButton claims it won't accept None.
self._default_button = UIFlatButton(
text=self._value, width=self.width, height=self.height
)Metadata
Metadata
Assignees
Labels
guiRelated to arcade GUI (sub module arcade.gui)Related to arcade GUI (sub module arcade.gui)