Hello,
I have a dual monitor setup, with one of the monitors being a touch device. I configured the monitors to be side-by-side. The touch region now streches over both monitors, i.e. the topleft-corner of the touch screen maps to the top-left corner of the whole desktop (i.e. both monitors combined).
I have found instructions to fix this using xinput (https://wiki.archlinux.org/index.php...ng_Touchscreen). However, after calling
This seems to be a known bug in X (e.g. https://bugs.launchpad.net/ubuntu/+s...er/+bug/774938). Is there a fix for this in OpenSuSE?
OpenSUSE: 12.3
Help will be appreciated!
Best regards
Benjamin
P.S. I have also tried setting the TransformationMatrix directly in /etc/X11/xorg.conf.d/10-evdev.conf but the behaviour is the same:
I have a dual monitor setup, with one of the monitors being a touch device. I configured the monitors to be side-by-side. The touch region now streches over both monitors, i.e. the topleft-corner of the touch screen maps to the top-left corner of the whole desktop (i.e. both monitors combined).
I have found instructions to fix this using xinput (https://wiki.archlinux.org/index.php...ng_Touchscreen). However, after calling
xinput set-prop "Acer T231H" --type=float "Coordinate Transformation Matrix" 0.5 0 0.5 0 0.9 0 0 0 1
the cursor jumps somewhat randomly (even though, the initial touch point is displayed correctly). This seems to be a known bug in X (e.g. https://bugs.launchpad.net/ubuntu/+s...er/+bug/774938). Is there a fix for this in OpenSuSE?
OpenSUSE: 12.3
Help will be appreciated!
Best regards
Benjamin
P.S. I have also tried setting the TransformationMatrix directly in /etc/X11/xorg.conf.d/10-evdev.conf but the behaviour is the same:
Code:
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
Option "TransformationMatrix" "0.5 0 0.5 0 0.9 0 0 0 1"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection