Standardise keyword specifications

This commit is contained in:
Dean Herbert
2019-11-21 22:35:15 +09:00
parent f066d8434c
commit 8b1fb2d5a1
6 changed files with 12 additions and 9 deletions

View File

@ -76,13 +76,13 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
TransferValueOnCommit = true,
Bindable = osuConfig.GetBindable<float>(OsuSetting.UIScale),
KeyboardStep = 0.01f,
Keywords = new[] { "Scale" },
Keywords = new[] { "scale", "letterbox" },
},
new SettingsEnumDropdown<ScalingMode>
{
LabelText = "Screen Scaling",
Bindable = osuConfig.GetBindable<ScalingMode>(OsuSetting.Scaling),
Keywords = new[] { "Scale" },
Keywords = new[] { "scale", "letterbox" },
},
scalingSettings = new FillFlowContainer<SettingsSlider<float>>
{