1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-18 11:02:57 +08:00

Use Alt-{Left,Right} as default bindings for bookmark navigation

This commit is contained in:
Bartłomiej Dach 2024-12-07 22:51:09 +09:00
parent 459533aba6
commit 7fcfebf4b4
No known key found for this signature in database

View File

@ -154,8 +154,8 @@ namespace osu.Game.Input.Bindings
new KeyBinding(new[] { InputKey.Control, InputKey.Shift, InputKey.Right }, GlobalAction.EditorSeekToNextSamplePoint),
new KeyBinding(new[] { InputKey.Control, InputKey.B }, GlobalAction.EditorAddBookmark),
new KeyBinding(new[] { InputKey.Control, InputKey.Shift, InputKey.B }, GlobalAction.EditorRemoveClosestBookmark),
new KeyBinding(InputKey.None, GlobalAction.EditorSeekToPreviousBookmark),
new KeyBinding(InputKey.None, GlobalAction.EditorSeekToNextBookmark),
new KeyBinding(new[] { InputKey.Alt, InputKey.Left }, GlobalAction.EditorSeekToPreviousBookmark),
new KeyBinding(new[] { InputKey.Alt, InputKey.Right }, GlobalAction.EditorSeekToNextBookmark),
};
private static IEnumerable<KeyBinding> editorTestPlayKeyBindings => new[]