From 0c8358899f05ee783842d008ff5d87f3a41fbd59 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Sun, 22 Feb 2026 19:18:47 -0800 Subject: [PATCH] use blocking for handy keys (#881) --- src-tauri/src/shortcut/handy_keys.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/shortcut/handy_keys.rs b/src-tauri/src/shortcut/handy_keys.rs index 1cd0ce5..3153d5e 100644 --- a/src-tauri/src/shortcut/handy_keys.rs +++ b/src-tauri/src/shortcut/handy_keys.rs @@ -111,7 +111,7 @@ impl HandyKeysState { info!("handy-keys manager thread started"); // Create the HotkeyManager in this thread - let manager = match HotkeyManager::new() { + let manager = match HotkeyManager::new_with_blocking() { Ok(m) => m, Err(e) => { error!("Failed to create HotkeyManager: {}", e);