1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 17:47:18 +08:00

F1 also does not work with minus in song select, same behaviour

This commit is contained in:
Fabian van Oeffelt 2024-05-02 19:05:07 +02:00
parent f534c4aada
commit 5c21a0330a

View File

@ -134,7 +134,7 @@ namespace osu.Game.Input.Bindings
new KeyBinding(new[] { InputKey.Shift, InputKey.F2 }, GlobalAction.SelectPreviousRandom),
new KeyBinding(InputKey.F3, GlobalAction.ToggleBeatmapOptions),
new KeyBinding(InputKey.BackSpace, GlobalAction.DeselectAllMods),
new KeyBinding(InputKey.PageUp, GlobalAction.IncreaseSpeed), // Not working with minus and other keys....
new KeyBinding(InputKey.PageUp, GlobalAction.IncreaseSpeed),
new KeyBinding(InputKey.PageDown, GlobalAction.DecreaseSpeed),
};