diff --git a/macos/Sources/AppDelegate.swift b/macos/Sources/AppDelegate.swift index a9ea30eeb..9a06c81f2 100644 --- a/macos/Sources/AppDelegate.swift +++ b/macos/Sources/AppDelegate.swift @@ -224,7 +224,9 @@ class AppDelegate: NSObject, ObservableObject, NSApplicationDelegate, GhosttyApp let trigger = ghostty_config_trigger(cfg, action, UInt(action.count)) guard let equiv = Ghostty.keyEquivalent(key: trigger.key) else { - Self.logger.debug("no keyboard shorcut set for action=\(action)") + // No shortcut, clear the menu item + menu.keyEquivalent = "" + menu.keyEquivalentModifierMask = [] return }