From 75aaf11a9ccde630a9c704cc9cc8ccbbfb71f130 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Thu, 22 Sep 2022 16:33:45 +0100 Subject: [PATCH] default pass_mouse_when_bound to 0 --- src/config/ConfigManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index f3c99e86..542ce09a 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -142,7 +142,7 @@ void CConfigManager::setDefaultVars() { configValues["input:touchpad:tap-to-click"].intValue = 1; configValues["input:touchpad:drag_lock"].intValue = 0; - configValues["binds:pass_mouse_when_bound"].intValue = 1; + configValues["binds:pass_mouse_when_bound"].intValue = 0; configValues["binds:scroll_event_delay"].intValue = 300; configValues["binds:workspace_back_and_forth"].intValue = 0; configValues["binds:allow_workspace_cycles"].intValue = 0;