From a58216e07636233b4533cc3bba844263a1802f19 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Fri, 13 Mar 2026 20:37:09 +0800 Subject: [PATCH] default to handy keys on windowss (#1029) --- src-tauri/src/settings.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src-tauri/src/settings.rs b/src-tauri/src/settings.rs index 7e242eb..7e7403f 100644 --- a/src-tauri/src/settings.rs +++ b/src-tauri/src/settings.rs @@ -171,12 +171,10 @@ pub enum KeyboardImplementation { impl Default for KeyboardImplementation { fn default() -> Self { - // Default to HandyKeys only on macOS where it's well-tested. - // Windows and Linux use Tauri by default (handy-keys not sufficiently tested yet). - #[cfg(target_os = "macos")] - return KeyboardImplementation::HandyKeys; - #[cfg(not(target_os = "macos"))] + #[cfg(target_os = "linux")] return KeyboardImplementation::Tauri; + #[cfg(not(target_os = "linux"))] + return KeyboardImplementation::HandyKeys; } }