Skip to content

Commit

Permalink
Swap go back and go forward commands on Mac.
Browse files Browse the repository at this point in the history
Fixes #1563.
  • Loading branch information
nriley committed Nov 2, 2024
1 parent f97f87b commit cd170cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/navigation/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ def go_forward():
@ctx_mac.action_class("user")
class MacActions:
def go_back():
actions.key("cmd-]")
actions.key("cmd-[")

def go_forward():
actions.key("cmd-[")
actions.key("cmd-]")


@mod.action_class
Expand Down

0 comments on commit cd170cd

Please sign in to comment.