From 171c18873e53012b8886bd018b7e2da3227c3f78 Mon Sep 17 00:00:00 2001 From: Federico Terzi <federico-terzi@users.noreply.github.com> Date: Tue, 5 May 2020 20:29:44 +0200 Subject: [PATCH] Make fast_inject enabled by default on Linux --- src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 0acbaf7..cb6b215 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -69,7 +69,7 @@ fn default_secure_input_watcher_enabled() -> bool {true} fn default_secure_input_notification() -> bool {true} fn default_show_notifications() -> bool {true} fn default_show_icon() -> bool {true} -fn default_fast_inject() -> bool {false} +fn default_fast_inject() -> bool {true} fn default_secure_input_watcher_interval() -> i32 {5000} fn default_matches() -> Vec<Match> { Vec::new() } fn default_global_vars() -> Vec<MatchVariable> { Vec::new() }