tablet: Add left_handed option for tablets (#5178)

* Add left_handed option for tablets

* Update left_handed tablet option's fallback string
This commit is contained in:
Khalid
2024-03-20 07:00:43 +03:00
committed by GitHub
parent 95ac8a34b1
commit 9ddf1b105e
2 changed files with 6 additions and 0 deletions

View File

@@ -1418,6 +1418,11 @@ void CInputManager::setTabletConfigs() {
Debug::log(LOG, "Setting calibration matrix for device {}", t.name);
libinput_device_config_calibration_set_matrix(LIBINPUTDEV, MATRICES[ROTATION]);
if (g_pConfigManager->getDeviceInt(t.name, "left_handed", "input:tablet:left_handed") == 0)
libinput_device_config_left_handed_set(LIBINPUTDEV, 0);
else
libinput_device_config_left_handed_set(LIBINPUTDEV, 1);
const auto OUTPUT = g_pConfigManager->getDeviceString(t.name, "output", "input:tablet:output");
const auto PMONITOR = g_pCompositor->getMonitorFromString(OUTPUT);
if (!OUTPUT.empty() && OUTPUT != STRVAL_EMPTY && PMONITOR) {