From adc983ecf9d2f2e7e015c8689fc804d72285eaad Mon Sep 17 00:00:00 2001 From: Tolu Oluwagbemi Date: Mon, 27 Oct 2025 11:17:32 +0100 Subject: [PATCH] Add catch for when activation shortcut is not set --- Leader Key/AppDelegate.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Leader Key/AppDelegate.swift b/Leader Key/AppDelegate.swift index 68190e69..e449285c 100644 --- a/Leader Key/AppDelegate.swift +++ b/Leader Key/AppDelegate.swift @@ -126,6 +126,9 @@ class AppDelegate: NSObject, NSApplicationDelegate, self.processKeys([groupKey]) } } + if Defaults[.groupShortcuts].isEmpty && !KeyboardShortcuts.isEnabled(for: .activate) { + showSettings() + } } func applicationWillTerminate(_ notification: Notification) {