We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e760f94 commit 7ada3abCopy full SHA for 7ada3ab
platune-tray/src/main.rs
@@ -59,7 +59,7 @@ fn main() -> Result<(), BoxedError> {
59
let (manager_tx, manager_rx) = mpsc::channel(32);
60
61
let hotkeys_manager = GlobalHotKeyManager::new().unwrap();
62
- let hotkey = HotKey::new(Some(Modifiers::ALT), Code::KeyP);
+ let hotkey = HotKey::new(Some(Modifiers::SUPER | Modifiers::SHIFT), Code::KeyP);
63
let toggle_id = hotkey.id();
64
hotkeys_manager.register(hotkey).unwrap();
65
let global_hotkey_channel = GlobalHotKeyEvent::receiver();
0 commit comments