1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 20:33:35 +08:00

Make bank selection controls dropdowns instead of text boxes

Longstanding complaint. Text boxes make no sense if anything that isn't
the three legacy values gets deleted on save anyway.
This commit is contained in:
Bartłomiej Dach
2025-10-15 10:30:03 +02:00
Unverified
parent fa7bd482d2
commit 1f2f86b016
5 changed files with 27 additions and 24 deletions
@@ -116,12 +116,13 @@ namespace osu.Game.Tournament.Screens.Setup
Failing = api.IsLoggedIn != true,
Description = "In order to access the API and display metadata, signing in is required."
},
new LabelledDropdown<RulesetInfo?>
new LabelledDropdown<RulesetInfo?>(padded: true)
{
Label = "Ruleset",
Description = "Decides what stats are displayed and which ranks are retrieved for players. This requires a restart to reload data for an existing bracket.",
Items = rulesets.AvailableRulesets,
Current = LadderInfo.Ruleset,
DropdownWidth = 0.5f,
},
new TournamentSwitcher
{