mirror of https://github.com/ppy/osu
Add `color` search alias for `colour` settings
This commit is contained in:
parent
10e30b05bc
commit
83bf1efc1c
|
@ -41,6 +41,7 @@ private void load()
|
|||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
Keywords = new[] { "color" },
|
||||
LabelText = RulesetSettingsStrings.TimingBasedColouring,
|
||||
Current = config.GetBindable<bool>(ManiaRulesetSetting.TimingBasedNoteColouring),
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ private void load(OsuConfigManager config)
|
|||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
Keywords = new[] { "combo", "override" },
|
||||
Keywords = new[] { "combo", "override", "color" },
|
||||
LabelText = SkinSettingsStrings.BeatmapColours,
|
||||
Current = config.GetBindable<bool>(OsuSetting.BeatmapColours)
|
||||
},
|
||||
|
@ -47,6 +47,7 @@ private void load(OsuConfigManager config)
|
|||
},
|
||||
new SettingsSlider<float>
|
||||
{
|
||||
Keywords = new[] { "color" },
|
||||
LabelText = GraphicsSettingsStrings.ComboColourNormalisation,
|
||||
Current = comboColourNormalisation,
|
||||
DisplayAsPercentage = true,
|
||||
|
|
Loading…
Reference in New Issue