1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Add default

This commit is contained in:
Dean Herbert 2020-06-02 19:29:22 +09:00
parent 748f7fcd8b
commit 828180ad9b

View File

@ -211,7 +211,8 @@ namespace osu.Game.Tournament.Screens
private class ResolutionSelector : ActionableInfo
{
private const int minimum_window_height = 480;
private const int maximum_window_height = 2160; // 4k
private const int maximum_window_height = 2160;
public new Action<int> Action;
private OsuNumberBox numberBox;
@ -221,6 +222,7 @@ namespace osu.Game.Tournament.Screens
var drawable = base.CreateComponent();
FlowContainer.Insert(-1, numberBox = new OsuNumberBox
{
Text = "1080",
Width = 100
});