|
From: Nikolai K. <sp...@gm...> - 2012-03-21 20:27:43
|
Only match Waltop event devices classified as tablets.
Advanced Waltop tablets have on-the-frame controls such as multifunction
dials (controlling scrolling, zooming, volume and keyboard navigation) and
keyboard modifier buttons. These are represented as separate event devices
and are better handled by xf86-input-evdev.
Signed-off-by: Nikolai Kondrashov <sp...@gm...>
---
conf/50-wacom.conf | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/conf/50-wacom.conf b/conf/50-wacom.conf
index 5cf5fdf..febcef6 100644
--- a/conf/50-wacom.conf
+++ b/conf/50-wacom.conf
@@ -1,6 +1,6 @@
Section "InputClass"
Identifier "Wacom class"
- MatchProduct "Wacom|WACOM|WALTOP|Hanwang|PTK-540WL"
+ MatchProduct "Wacom|WACOM|Hanwang|PTK-540WL"
MatchDevicePath "/dev/input/event*"
Driver "wacom"
EndSection
@@ -17,6 +17,14 @@ Section "InputClass"
Driver "wacom"
EndSection
+# Waltop tablets
+Section "InputClass"
+ Identifier "Wacom class"
+ MatchProduct "WALTOP"
+ MatchIsTablet "on"
+ MatchDevicePath "/dev/input/event*"
+ Driver "wacom"
+EndSection
# N-Trig Duosense Electromagnetic Digitizer
Section "InputClass"
--
1.7.9.1
|