changing song select background blur setting to boolean

This commit is contained in:
Jérémiah DÉCOMBE
2023-01-24 09:19:53 +01:00
parent d783998c81
commit 7ca2a431e6
3 changed files with 8 additions and 8 deletions

View File

@ -43,10 +43,10 @@ namespace osu.Game.Overlays.Settings.Sections.UserInterface
Current = config.GetBindable<ModSelectHotkeyStyle>(OsuSetting.ModSelectHotkeyStyle),
ClassicDefault = ModSelectHotkeyStyle.Classic
},
new SettingsSlider<float>
new SettingsCheckbox
{
LabelText = UserInterfaceStrings.SongSelectBackgroundBlurLevel,
Current = config.GetBindable<float>(OsuSetting.SongSelectBackgoundBlurLevel)
Current = config.GetBindable<bool>(OsuSetting.SongSelectBackgoundBlur)
}
};
}