1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Apply review

This commit is contained in:
Dean Herbert 2018-09-20 19:00:41 +09:00
parent 73fb3fa3a4
commit 1861547c86

View File

@ -49,7 +49,6 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y
},
new SettingsCheckbox
{
LabelText = "Letterboxing",
@ -83,13 +82,14 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
};
var resolutions = getResolutions();
if (resolutions.Count > 1)
{
resolutionSettingsContainer.Child = resolutionDropdown = new SettingsDropdown<Size>
{
LabelText = "Resolution",
ShowsDefaultIndicator = false,
Items = getResolutions(),
Items = resolutions,
Bindable = sizeFullscreen
};