Skip to content

Commit

Permalink
fix: small ux change on pr-104
Browse files Browse the repository at this point in the history
  • Loading branch information
louis.pontoise authored and lwouis committed Jan 3, 2020
1 parent 4d19015 commit 6d2741a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions alt-tab-macos/ui/StatusItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ class StatusItem {
item.button!.title = Application.name
item.menu = NSMenu()
item.menu!.addItem(
withTitle: "Preferences…",
action: #selector(application.showPreferencesPanel),
keyEquivalent: ",")
item.menu!.addItem(
withTitle: "Show…",
withTitle: "Show",
action: #selector(application.showUi),
keyEquivalent: "s"
)
item.menu!.addItem(
withTitle: "Preferences…",
action: #selector(application.showPreferencesPanel),
keyEquivalent: ",")
item.menu!.addItem(
withTitle: "Quit \(Application.name) #VERSION#",
action: #selector(NSApplication.terminate(_:)),
Expand Down

0 comments on commit 6d2741a

Please sign in to comment.