We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b93f92 commit 27c9cdcCopy full SHA for 27c9cdc
1 file changed
Core/Sources/HostApp/GeneralView.swift
@@ -288,9 +288,12 @@ struct GeneralSettingsView: View {
288
289
Text("pt")
290
}
291
-
292
- KeyboardShortcuts.Recorder("Hotkey to Toggle Widgets", name: .showHideWidget)
293
+
+ KeyboardShortcuts.Recorder("Hotkey to Toggle Widgets", name: .showHideWidget) { _ in
+ // It's not used in this app!
294
+ KeyboardShortcuts.disable(.showHideWidget)
295
+ }
296
297
Toggle(isOn: $settings.showHideWidgetShortcutGlobally) {
298
Text("Enable the Hotkey Globally")
299
0 commit comments