Skip to content

Commit 7ddb486

Browse files
committed
Make spinner buttons shorter
1 parent 49a5cd0 commit 7ddb486

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ManualClient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@ def build(self) -> Layout:
280280
manuals = [w for w in AutoWorldRegister.world_types.keys() if "Manual_" in w]
281281
manuals.sort() # Sort by alphabetical order, not load order
282282
self.manual_game_layout.add_widget(game_bar_label)
283-
self.game_bar_text = Spinner(text=self.ctx.suggested_game,
284-
size_hint_y=None, height=dp(30), values=manuals, option_cls=GameSelectOption, dropdown_cls=GameSelectDropDown)
283+
self.game_bar_text = Spinner(text=self.ctx.suggested_game, size_hint_y=None, height=dp(30), sync_height=True,
284+
values=manuals, option_cls=GameSelectOption, dropdown_cls=GameSelectDropDown)
285285
self.manual_game_layout.add_widget(self.game_bar_text)
286286

287287
self.grid.add_widget(self.manual_game_layout, 3)

0 commit comments

Comments
 (0)