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();
FlowContainer.Insert(-1, dropdown = new OsuDropdown<string>
{
Width = 510
});
FlowContainer.Insert(-2, folderButton = new TriangleButton
FlowContainer.Insert(-1, folderButton = new TriangleButton
{
Text = "Open folder",
Width = 100
});
FlowContainer.Insert(-2, dropdown = new OsuDropdown<string>
{
Width = 510
});
return drawable;
}
}