Skip to content

Commit 6580da1

Browse files
authored
Add ⌘ + , keyboard shortcut to "Preferences..." (MonitorControl#753)
1 parent 274fff4 commit 6580da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MonitorControl/Support/MenuHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ class MenuHandler: NSMenu, NSMenuDelegate {
266266
if app.macOS10() {
267267
self.insertItem(NSMenuItem.separator(), at: self.items.count)
268268
}
269-
self.insertItem(withTitle: NSLocalizedString("Preferences…", comment: "Shown in menu"), action: #selector(app.prefsClicked), keyEquivalent: "", at: self.items.count)
269+
self.insertItem(withTitle: NSLocalizedString("Preferences…", comment: "Shown in menu"), action: #selector(app.prefsClicked), keyEquivalent: ",", at: self.items.count)
270270
let updateItem = NSMenuItem(title: NSLocalizedString("Check for updates…", comment: "Shown in menu"), action: #selector(app.updaterController.checkForUpdates(_:)), keyEquivalent: "")
271271
updateItem.target = app.updaterController
272272
self.insertItem(updateItem, at: self.items.count)

0 commit comments

Comments
 (0)