Skip to content

Commit

Permalink
Use Ctrl-Shift-{Left,Right} as default bindings for bookmark navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed Dec 7, 2024
1 parent 459533a commit dc4a51b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Input/Bindings/GlobalActionContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ public static IEnumerable<GlobalAction> GetGlobalActionsFor(GlobalActionCategory
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.Control, InputKey.Shift, InputKey.Left }, GlobalAction.EditorSeekToPreviousBookmark),
new KeyBinding(new[] { InputKey.Control, InputKey.Shift, InputKey.Right }, GlobalAction.EditorSeekToNextBookmark),
};

private static IEnumerable<KeyBinding> editorTestPlayKeyBindings => new[]
Expand Down

0 comments on commit dc4a51b

Please sign in to comment.