1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:03:08 +08:00

Change button location to the right side of dropdown

This commit is contained in:
Shivam 2022-02-25 15:13:32 +01:00
parent 333c0cd4f9
commit 4c56458173

View File

@ -35,17 +35,17 @@ namespace osu.Game.Tournament.Screens.Setup
{ {
var drawable = base.CreateComponent(); var drawable = base.CreateComponent();
FlowContainer.Insert(-1, dropdown = new OsuDropdown<string> FlowContainer.Insert(-1, folderButton = new TriangleButton
{
Width = 510
});
FlowContainer.Insert(-2, folderButton = new TriangleButton
{ {
Text = "Open folder", Text = "Open folder",
Width = 100 Width = 100
}); });
FlowContainer.Insert(-2, dropdown = new OsuDropdown<string>
{
Width = 510
});
return drawable; return drawable;
} }
} }