diff --git a/osu.Game/Configuration/OsuConfigManager.cs b/osu.Game/Configuration/OsuConfigManager.cs
index 2b7c2102d4..f7b84527b5 100644
--- a/osu.Game/Configuration/OsuConfigManager.cs
+++ b/osu.Game/Configuration/OsuConfigManager.cs
@@ -60,7 +60,7 @@ namespace osu.Game.Configuration
SetDefault(OsuSetting.ToolbarClockDisplayMode, ToolbarClockDisplayMode.Full);
- SetDefault(OsuSetting.BeatmapSelectionBlurLevel, 1f, 0, 1f, 0.01f);
+ SetDefault(OsuSetting.BeatmapSelectionBackgoundBlurLevel, 1f, 0, 1f, 0.01f);
// Online settings
SetDefault(OsuSetting.Username, string.Empty);
@@ -341,7 +341,7 @@ namespace osu.Game.Configuration
ChatDisplayHeight,
BeatmapListingCardSize,
ToolbarClockDisplayMode,
- BeatmapSelectionBlurLevel,
+ BeatmapSelectionBackgoundBlurLevel,
Version,
ShowFirstRunSetup,
ShowConvertedBeatmaps,
diff --git a/osu.Game/Localisation/UserInterfaceStrings.cs b/osu.Game/Localisation/UserInterfaceStrings.cs
index 0bf7dae403..9abb3aaddc 100644
--- a/osu.Game/Localisation/UserInterfaceStrings.cs
+++ b/osu.Game/Localisation/UserInterfaceStrings.cs
@@ -110,10 +110,9 @@ namespace osu.Game.Localisation
public static LocalisableString ModSelectHotkeyStyle => new TranslatableString(getKey(@"mod_select_hotkey_style"), @"Mod select hotkey style");
///
- /// "Beatmap selection blur level"
+ /// "Song select background blur"
///
- public static LocalisableString BeatmapSelectionBlurLevel => new TranslatableString(getKey(@"beatmap_selection_blur_level"), @"Beatmap selection blur level");
-
+ public static LocalisableString BeatmapSelectionBackgroundBlurLevel => new TranslatableString(getKey(@"beatmap_selection_background_blur_level"), @"Song select background blur");
///
/// "no limit"
diff --git a/osu.Game/Overlays/Settings/Sections/UserInterface/SongSelectSettings.cs b/osu.Game/Overlays/Settings/Sections/UserInterface/SongSelectSettings.cs
index 828119981f..f0b2721153 100644
--- a/osu.Game/Overlays/Settings/Sections/UserInterface/SongSelectSettings.cs
+++ b/osu.Game/Overlays/Settings/Sections/UserInterface/SongSelectSettings.cs
@@ -45,8 +45,8 @@ namespace osu.Game.Overlays.Settings.Sections.UserInterface
},
new SettingsSlider
{
- LabelText = UserInterfaceStrings.BeatmapSelectionBlurLevel,
- Current = config.GetBindable(OsuSetting.BeatmapSelectionBlurLevel)
+ LabelText = UserInterfaceStrings.BeatmapSelectionBackgroundBlurLevel,
+ Current = config.GetBindable(OsuSetting.BeatmapSelectionBackgoundBlurLevel)
}
};
}
diff --git a/osu.Game/Screens/Select/SongSelect.cs b/osu.Game/Screens/Select/SongSelect.cs
index bd1498f0dd..bf6e433a8e 100644
--- a/osu.Game/Screens/Select/SongSelect.cs
+++ b/osu.Game/Screens/Select/SongSelect.cs
@@ -143,7 +143,7 @@ namespace osu.Game.Screens.Select
[BackgroundDependencyLoader(true)]
private void load(AudioManager audio, OsuColour colours, ManageCollectionsDialog? manageCollectionsDialog, DifficultyRecommender? recommender, OsuConfigManager config)
{
- backgroundBlurLevel = config.GetBindable(OsuSetting.BeatmapSelectionBlurLevel);
+ backgroundBlurLevel = config.GetBindable(OsuSetting.BeatmapSelectionBackgoundBlurLevel);
LoadComponentAsync(Carousel = new BeatmapCarousel
{