1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 02:31:25 +08:00

Adjust seed and last year placing textbox positioning in team editor

This commit is contained in:
ILW8
2025-12-30 01:55:42 +00:00
Unverified
parent 71be574c2b
commit 1cff386b3a
@@ -109,43 +109,43 @@ namespace osu.Game.Tournament.Screens.Editors
new SettingsTextBox
{
LabelText = "Name",
Width = 0.2f,
Width = 0.33f,
Current = Model.FullName
},
acronymTextBox = new SettingsTextBox
{
LabelText = "Acronym",
Width = 0.2f,
Width = 0.25f,
Current = Model.Acronym
},
new SettingsTextBox
{
LabelText = "Flag",
Width = 0.2f,
Width = 0.25f,
Current = Model.FlagName
},
new SettingsTextBox
{
LabelText = "Seed",
Width = 0.2f,
Current = Model.Seed
},
new SettingsTextBox
{
LabelText = "Last Year Placement",
Width = 0.33f,
Current = Model.LastYearPlacing
},
new SettingsButton
{
Width = 0.2f,
Margin = new MarginPadding(10),
Width = 0.33f,
Margin = new MarginPadding { Top = 20 },
Text = "Edit seeding results",
Action = () =>
{
sceneManager?.SetScreen(new SeedingEditorScreen(team, parent));
}
},
new SettingsTextBox
{
LabelText = "Seed",
Width = 0.25f,
Current = Model.Seed
},
new SettingsTextBox
{
LabelText = "Last Year Placement",
Width = 0.25f,
Current = Model.LastYearPlacing
},
playerEditor,
new SettingsButton
{