From bb6bdec3613e44c74e5a37d05616e6a666d48b4a Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 27 May 2025 01:43:54 +0900 Subject: [PATCH] Fix mod and beatmap options toggle keys not working --- osu.Game/Screens/SelectV2/SongSelect.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/osu.Game/Screens/SelectV2/SongSelect.cs b/osu.Game/Screens/SelectV2/SongSelect.cs index 3436855dc1..962c11f345 100644 --- a/osu.Game/Screens/SelectV2/SongSelect.cs +++ b/osu.Game/Screens/SelectV2/SongSelect.cs @@ -234,11 +234,15 @@ namespace osu.Game.Screens.SelectV2 { new FooterButtonMods(modSelectOverlay) { + Hotkey = GlobalAction.ToggleModSelection, Current = Mods, RequestDeselectAllMods = () => Mods.Value = Array.Empty() }, new FooterButtonRandom(), - new FooterButtonOptions(), + new FooterButtonOptions + { + Hotkey = GlobalAction.ToggleBeatmapOptions, + } }; protected override void LoadComplete()