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:
parent
4b5ea6bd0b
commit
a12a20e8b5
@ -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[]
|
||||
|
Loading…
Reference in New Issue
Block a user