Skip to content

Commit

Permalink
Updated settings text
Browse files Browse the repository at this point in the history
  • Loading branch information
superhighfives committed Nov 18, 2023
1 parent bc7f2c5 commit 7257b0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pika/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate {
)

let preferences = NSMenuItem(
title: PikaText.textMenuPreferences,
title: "\(PikaText.textMenuPreferences)...",
action: #selector(openPreferencesWindow(_:)),
keyEquivalent: ","
)
Expand Down
2 changes: 1 addition & 1 deletion Pika/Views/KeyboardShortcutGrid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ struct KeyboardShortcutGrid: View {

HStack(spacing: 0) {
KeyboardShortcutItem(
title: PikaText.textMenuPreferences,
title: "\(PikaText.textMenuPreferences)...",
event: PikaConstants.ncTriggerPreferences,
keys: ["", ","]
)
Expand Down
2 changes: 1 addition & 1 deletion Pika/Views/NavigationMenuItems.swift
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ struct NavigationMenuItems: View {
Button(PikaText.textMenuGitHubIssue, action: {
NSApp.sendAction(#selector(AppDelegate.openGitHubIssue), to: nil, from: nil)
})
Button(PikaText.textMenuPreferences, action: {
Button("\(PikaText.textMenuPreferences)...", action: {
NSApp.sendAction(#selector(AppDelegate.openPreferencesWindow), to: nil, from: nil)
})
.modify {
Expand Down

0 comments on commit 7257b0d

Please sign in to comment.