Skip to content

Commit

Permalink
fix confirm shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark K committed Jan 5, 2022
1 parent fad17b6 commit 61968d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SwitchR/SwitchRApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
next.keyEquivalentModifierMask = [.control, .option]
statusBarMenu.addItem(next)

let confirm = NSMenuItem(title: "Confirm", action: #selector(AppDelegate.triggerConfirm), keyEquivalent: "c")
let confirm = NSMenuItem(title: "Confirm", action: #selector(AppDelegate.triggerConfirm), keyEquivalent: "\r")
confirm.keyEquivalentModifierMask = [.control, .option]
statusBarMenu.addItem(confirm)

Expand Down

0 comments on commit 61968d1

Please sign in to comment.