mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-10 07:26:01 +01:00
Fix getDeviceInt string arg "input:left_handed"
This commit is contained in:
parent
44da575ea8
commit
6d46ed4011
1 changed files with 2 additions and 2 deletions
|
@ -692,7 +692,7 @@ void CInputManager::setMouseConfigs() {
|
||||||
else
|
else
|
||||||
libinput_device_config_click_set_method(LIBINPUTDEV, LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER);
|
libinput_device_config_click_set_method(LIBINPUTDEV, LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER);
|
||||||
|
|
||||||
if ((HASCONFIG ? g_pConfigManager->getDeviceInt(devname, "left_handed") : g_pConfigManager->getInt("input:touchpad:left_handed")) == 0)
|
if ((HASCONFIG ? g_pConfigManager->getDeviceInt(devname, "left_handed") : g_pConfigManager->getInt("input:left_handed")) == 0)
|
||||||
libinput_device_config_left_handed_set(LIBINPUTDEV, 0);
|
libinput_device_config_left_handed_set(LIBINPUTDEV, 0);
|
||||||
else
|
else
|
||||||
libinput_device_config_left_handed_set(LIBINPUTDEV, 1);
|
libinput_device_config_left_handed_set(LIBINPUTDEV, 1);
|
||||||
|
|
Loading…
Reference in a new issue