1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 08:27:49 +08:00

Change Inputkeys to Ctrl+Up/Ctrl+Down

This commit is contained in:
Fabian van Oeffelt 2024-05-18 18:37:44 +02:00
parent 4b5ea6bd0b
commit a12a20e8b5

View File

@ -182,8 +182,8 @@ 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),
new KeyBinding(InputKey.PageDown, GlobalAction.DecreaseSpeed),
new KeyBinding(new[] { InputKey.Control, InputKey.Up }, GlobalAction.IncreaseSpeed),
new KeyBinding(new[] { InputKey.Control, InputKey.Down }, GlobalAction.DecreaseSpeed),
};
private static IEnumerable<KeyBinding> audioControlKeyBindings => new[]