diff options
author | Vaxry <[email protected]> | 2022-10-05 08:06:38 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-05 08:06:38 +0100 |
commit | 9153a8109071b4301a9703f6e01285ec5bd091d0 (patch) | |
tree | 3c8f5494a9f04afecc7263cd2ee30db51f23b86c | |
parent | 44da575ea87d5f6a919d0d84ff44d021f5b30699 (diff) | |
parent | 0d7f6eac9e8e71e7ec82a00640f5f6dfc042d5b5 (diff) | |
download | Hyprland-9153a8109071b4301a9703f6e01285ec5bd091d0.tar.gz Hyprland-9153a8109071b4301a9703f6e01285ec5bd091d0.zip |
Merge pull request #781 from Dickby/fix_left_handed
Fix getDeviceInt string arg "input:left_handed"
-rw-r--r-- | src/managers/KeybindManager.cpp | 2 | ||||
-rw-r--r-- | src/managers/input/InputManager.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 2d1e6304..337ce059 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -425,7 +425,7 @@ bool CKeybindManager::handleVT(xkb_keysym_t keysym) { const auto PSESSION = wlr_backend_get_session(g_pCompositor->m_sWLRBackend); if (PSESSION) { - const int TTY = keysym - XKB_KEY_XF86Switch_VT_1 + 1; + const unsigned int TTY = keysym - XKB_KEY_XF86Switch_VT_1 + 1; if (PSESSION->vtnr == TTY) return false; // don't do anything. diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 56e03b8f..eef83a3d 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -692,7 +692,7 @@ void CInputManager::setMouseConfigs() { else 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); else libinput_device_config_left_handed_set(LIBINPUTDEV, 1); @@ -1036,4 +1036,4 @@ void CInputManager::newSwitch(wlr_input_device* pDevice) { void CInputManager::destroySwitch(SSwitchDevice* pDevice) { m_lSwitches.remove(*pDevice); -}
\ No newline at end of file +} |