1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 06:19:54 +08:00

Fix mod and beatmap options toggle keys not working

This commit is contained in:
Dean Herbert
2025-05-27 01:43:54 +09:00
Unverified
parent daaa90d902
commit bb6bdec361
+5 -1
View File
@@ -234,11 +234,15 @@ namespace osu.Game.Screens.SelectV2
{
new FooterButtonMods(modSelectOverlay)
{
Hotkey = GlobalAction.ToggleModSelection,
Current = Mods,
RequestDeselectAllMods = () => Mods.Value = Array.Empty<Mod>()
},
new FooterButtonRandom(),
new FooterButtonOptions(),
new FooterButtonOptions
{
Hotkey = GlobalAction.ToggleBeatmapOptions,
}
};
protected override void LoadComplete()