-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Cmd+Option+Shift+G assigned to both Focus Window and Quick Launcher #5782
Description
Describe the bug
Two different actions are assigned to the same keyboard shortcut: Cmd+Option+Shift+G (macOS) or Ctrl+Alt+Shift+G (Windows/Linux). The File menu shows "Focus goose Window" with this shortcut, but the global shortcut registration opens the Quick Launcher popup instead. This creates a conflict where the keyboard shortcut behavior doesn't match what's documented in the menu.
To Reproduce
Steps to reproduce the behavior:
- Open goose Desktop.
- Look at the File menu and note "Focus goose Window" shows
Cmd+Option+Shift+G(macOS) orCtrl+Alt+Shift+G(Windows/Linux). - Use the keyboard shortcut.
- Observe the Quick Launcher popup opening instead of focusing the goose window.
Expected behavior
Each action should have a unique keyboard shortcut. Either:
- The "Focus goose Window" menu item should display a different shortcut (or no shortcut), OR
- The Quick Launcher should use a different global shortcut
Screenshots
Not applicable.
Please provide the following information
- OS & Arch: macOS Ventura 13.5 ARM64
- Interface: UI (goose Desktop)
- Version: v1.14.0
- Extensions enabled: None
- Provider & Model: OpenAI – gpt-4
Additional context
In main.ts, the global shortcut is registered to createLauncher() while the File menu item shows the same shortcut but calls focusWindow(). The global shortcut takes precedence, making the menu's displayed shortcut invalid.