From e69f2ab4c363ca991087464b5295d34be81936be Mon Sep 17 00:00:00 2001 From: Marco Siedentopf Date: Sun, 12 Jun 2022 05:40:01 +0000 Subject: [PATCH] Added Config options for Touchpads Added Options to 1. toggle between clickfinger behavior and software buttons, 2. middle button emulation and 3. tap-to-click --- src/config/ConfigManager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 4e26dc89..00a451ef 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -86,6 +86,9 @@ void CConfigManager::setDefaultVars() { configValues["input:force_no_accel"].intValue = 0; configValues["input:touchpad:natural_scroll"].intValue = 0; configValues["input:touchpad:disable_while_typing"].intValue = 1; + configValues["input:touchpad:clickfinger_behavior"].intValue = 0; + configValues["input:touchpad:middle_button_emulation"].intValue = 0; + configValues["input:touchpad:tap-to-click"].intValue = 1; configValues["input:follow_mouse"].intValue = 1;