diff options
author | 2019-02-10 17:55:50 +0530 | |
---|---|---|
committer | 2019-02-10 17:55:50 +0530 | |
commit | 966fa7909b35163ed6f94f9ec3378e57579d6c8f (patch) | |
tree | 56136ecb8ae511d66a666797b8528b0a2646ca7e /WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift | |
parent | macOS: Adapt to the new applyConfiguration API (diff) | |
download | wireguard-apple-966fa7909b35163ed6f94f9ec3378e57579d6c8f.tar.xz wireguard-apple-966fa7909b35163ed6f94f9ec3378e57579d6c8f.zip |
macOS: Change keyboard shortcut for importing to Cmd+O
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to '')
-rw-r--r-- | WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift index cfeb8f1..c2f3ffa 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift @@ -38,7 +38,7 @@ class TunnelsListTableViewController: NSViewController { let addMenu: NSMenu = { let addMenu = NSMenu(title: "TunnelsListAdd") addMenu.addItem(withTitle: tr("macMenuAddEmptyTunnel"), action: #selector(handleAddEmptyTunnelAction), keyEquivalent: "n") - addMenu.addItem(withTitle: tr("macMenuImportTunnels"), action: #selector(handleImportTunnelAction), keyEquivalent: "i") + addMenu.addItem(withTitle: tr("macMenuImportTunnels"), action: #selector(handleImportTunnelAction), keyEquivalent: "o") return addMenu }() |