1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 21:32:57 +08:00

Change order of skin layout editor button for better visual balance

This commit is contained in:
Dean Herbert 2024-12-24 13:42:18 +09:00
parent ae9c7e1b35
commit 378bef34ef
No known key found for this signature in database

View File

@ -70,11 +70,6 @@ namespace osu.Game.Overlays.Settings.Sections
Current = skins.CurrentSkinInfo, Current = skins.CurrentSkinInfo,
Keywords = new[] { @"skins" }, Keywords = new[] { @"skins" },
}, },
new SettingsButton
{
Text = SkinSettingsStrings.SkinLayoutEditor,
Action = () => skinEditor?.ToggleVisibility(),
},
new FillFlowContainer new FillFlowContainer
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
@ -90,6 +85,11 @@ namespace osu.Game.Overlays.Settings.Sections
new DeleteSkinButton { Padding = new MarginPadding(), RelativeSizeAxes = Axes.None, Width = 110 }, new DeleteSkinButton { Padding = new MarginPadding(), RelativeSizeAxes = Axes.None, Width = 110 },
} }
}, },
new SettingsButton
{
Text = SkinSettingsStrings.SkinLayoutEditor,
Action = () => skinEditor?.ToggleVisibility(),
},
}; };
} }