1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:07:52 +08:00

Add open folder button to open currently selected tournament

This commit is contained in:
Shivam 2022-02-25 14:16:18 +01:00
parent 926abf7a0c
commit 333c0cd4f9

View File

@ -11,6 +11,7 @@ namespace osu.Game.Tournament.Screens.Setup
internal class TournamentSwitcher : ActionableInfo
{
private OsuDropdown<string> dropdown;
private OsuButton folderButton;
[Resolved]
private TournamentGameBase game { get; set; }
@ -25,6 +26,7 @@ namespace osu.Game.Tournament.Screens.Setup
dropdown.Current.BindValueChanged(v => Button.Enabled.Value = v.NewValue != startupTournament, true);
Action = () => game.GracefullyExit();
folderButton.Action = storage.PresentExternally;
ButtonText = "Close osu!";
}
@ -38,6 +40,12 @@ namespace osu.Game.Tournament.Screens.Setup
Width = 510
});
FlowContainer.Insert(-2, folderButton = new TriangleButton
{
Text = "Open folder",
Width = 100
});
return drawable;
}
}