mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 11:03:22 +08:00
Add control to adjust mod select search text box behaviour
This commit is contained in:
parent
0ab6e18792
commit
b3a7c7a7c9
@ -104,6 +104,11 @@ namespace osu.Game.Localisation
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString ModSelectHotkeyStyle => new TranslatableString(getKey(@"mod_select_hotkey_style"), @"Mod select hotkey style");
|
public static LocalisableString ModSelectHotkeyStyle => new TranslatableString(getKey(@"mod_select_hotkey_style"), @"Mod select hotkey style");
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// "Automatically focus search text box in mod select"
|
||||||
|
/// </summary>
|
||||||
|
public static LocalisableString ModSelectTextSearchStartsActive => new TranslatableString(getKey(@"mod_select_text_search_starts_active"), @"Automatically focus search text box in mod select");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "no limit"
|
/// "no limit"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -42,6 +42,12 @@ namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
|||||||
ClassicDefault = ModSelectHotkeyStyle.Classic
|
ClassicDefault = ModSelectHotkeyStyle.Classic
|
||||||
},
|
},
|
||||||
new SettingsCheckbox
|
new SettingsCheckbox
|
||||||
|
{
|
||||||
|
LabelText = UserInterfaceStrings.ModSelectTextSearchStartsActive,
|
||||||
|
Current = config.GetBindable<bool>(OsuSetting.ModSelectTextSearchStartsActive),
|
||||||
|
ClassicDefault = false
|
||||||
|
},
|
||||||
|
new SettingsCheckbox
|
||||||
{
|
{
|
||||||
LabelText = GameplaySettingsStrings.BackgroundBlur,
|
LabelText = GameplaySettingsStrings.BackgroundBlur,
|
||||||
Current = config.GetBindable<bool>(OsuSetting.SongSelectBackgroundBlur),
|
Current = config.GetBindable<bool>(OsuSetting.SongSelectBackgroundBlur),
|
||||||
|
Loading…
Reference in New Issue
Block a user