mirror of
https://github.com/ppy/osu.git
synced 2024-12-17 23:42:55 +08:00
Merge pull request #24948 from NiceAesth/settings-keywords
Add `color` search keyword for `colour` settings
This commit is contained in:
commit
324fa2d58a
@ -41,6 +41,7 @@ namespace osu.Game.Rulesets.Mania
|
|||||||
},
|
},
|
||||||
new SettingsCheckbox
|
new SettingsCheckbox
|
||||||
{
|
{
|
||||||
|
Keywords = new[] { "color" },
|
||||||
LabelText = RulesetSettingsStrings.TimingBasedColouring,
|
LabelText = RulesetSettingsStrings.TimingBasedColouring,
|
||||||
Current = config.GetBindable<bool>(ManiaRulesetSetting.TimingBasedNoteColouring),
|
Current = config.GetBindable<bool>(ManiaRulesetSetting.TimingBasedNoteColouring),
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,7 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
|||||||
},
|
},
|
||||||
new SettingsCheckbox
|
new SettingsCheckbox
|
||||||
{
|
{
|
||||||
Keywords = new[] { "combo", "override" },
|
Keywords = new[] { "combo", "override", "color" },
|
||||||
LabelText = SkinSettingsStrings.BeatmapColours,
|
LabelText = SkinSettingsStrings.BeatmapColours,
|
||||||
Current = config.GetBindable<bool>(OsuSetting.BeatmapColours)
|
Current = config.GetBindable<bool>(OsuSetting.BeatmapColours)
|
||||||
},
|
},
|
||||||
@ -47,6 +47,7 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
|||||||
},
|
},
|
||||||
new SettingsSlider<float>
|
new SettingsSlider<float>
|
||||||
{
|
{
|
||||||
|
Keywords = new[] { "color" },
|
||||||
LabelText = GraphicsSettingsStrings.ComboColourNormalisation,
|
LabelText = GraphicsSettingsStrings.ComboColourNormalisation,
|
||||||
Current = comboColourNormalisation,
|
Current = comboColourNormalisation,
|
||||||
DisplayAsPercentage = true,
|
DisplayAsPercentage = true,
|
||||||
|
Loading…
Reference in New Issue
Block a user