From 99b00ab72f7ef35890c2f6726120d171bfcfc616 Mon Sep 17 00:00:00 2001 From: Nathan van der Kamp Date: Fri, 26 Dec 2025 00:52:07 +0100 Subject: [PATCH] Add keywords to FPS related settings --- .../Overlays/Settings/Sections/Graphics/RendererSettings.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs b/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs index a8b127d522..69697bd9a3 100644 --- a/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs +++ b/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs @@ -44,7 +44,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics { LabelText = GraphicsSettingsStrings.FrameLimiter, Current = config.GetBindable(FrameworkSetting.FrameSync), - Keywords = new[] { @"fps" }, + Keywords = new[] { @"fps", @"framerate" }, }, new SettingsEnumDropdown { @@ -54,7 +54,8 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics new SettingsCheckbox { LabelText = GraphicsSettingsStrings.ShowFPS, - Current = osuConfig.GetBindable(OsuSetting.ShowFpsDisplay) + Current = osuConfig.GetBindable(OsuSetting.ShowFpsDisplay), + Keywords = new[] { @"framerate", @"counter" }, }, };