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

Merge pull request #21979 from peppy/add-beatmaps-override-keywords

Add search keywords for beatmap colours / hitsound overrides
This commit is contained in:
Bartłomiej Dach 2023-01-01 09:27:19 +01:00 committed by GitHub
commit f7c8986292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,11 +32,13 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
Keywords = new[] { "combo", "override" },
LabelText = SkinSettingsStrings.BeatmapColours, LabelText = SkinSettingsStrings.BeatmapColours,
Current = config.GetBindable<bool>(OsuSetting.BeatmapColours) Current = config.GetBindable<bool>(OsuSetting.BeatmapColours)
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
Keywords = new[] { "samples", "override" },
LabelText = SkinSettingsStrings.BeatmapHitsounds, LabelText = SkinSettingsStrings.BeatmapHitsounds,
Current = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds) Current = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds)
}, },