1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-06 06:23:41 +08:00

Merge pull request #36140 from nbvdkamp/add-fps-settings-keywords

Add keywords to FPS related settings
This commit is contained in:
Dean Herbert
2025-12-27 23:11:58 +09:00
committed by GitHub
Unverified
@@ -44,7 +44,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
{
LabelText = GraphicsSettingsStrings.FrameLimiter,
Current = config.GetBindable<FrameSync>(FrameworkSetting.FrameSync),
Keywords = new[] { @"fps" },
Keywords = new[] { @"fps", @"framerate" },
},
new SettingsEnumDropdown<ExecutionMode>
{
@@ -54,7 +54,8 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
new SettingsCheckbox
{
LabelText = GraphicsSettingsStrings.ShowFPS,
Current = osuConfig.GetBindable<bool>(OsuSetting.ShowFpsDisplay)
Current = osuConfig.GetBindable<bool>(OsuSetting.ShowFpsDisplay),
Keywords = new[] { @"framerate", @"counter" },
},
};