1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 09:42:57 +08:00

Add "counter" keyword for key overlay setting

This commit is contained in:
Dean Herbert 2022-01-31 16:37:47 +09:00
parent cec16d17ab
commit 9005bce0fa

View File

@ -37,7 +37,8 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
new SettingsCheckbox
{
LabelText = GameplaySettingsStrings.AlwaysShowKeyOverlay,
Current = config.GetBindable<bool>(OsuSetting.KeyOverlay)
Current = config.GetBindable<bool>(OsuSetting.KeyOverlay),
Keywords = new[] { "counter" },
},
};
}