Comment 14 for bug 576610

Revision history for this message
Irishbandit (irishbandit) wrote : Re: Manhattan tablet (WP8060U) working weird on Ubuntu 10.04 (Lucid Lynx)

Negora
No i use 64-bit and it is working great.
I would delete the following out of my Xorg.conf and use the /usr/lib/X11/xorg.conf.d/70-wizardpen.conf
having its configuration in both configuration files is confusing and could cause problems.

delete or comment out
Section "InputDevice"
  Identifier "Tablet0"
  Driver "wizardpen"
  Option "Device" "/dev/input/event6"
  Option "TopX" "2650"
   Option "TopY" "3563"
  Option "TopZ" "10
  Option "BottomX" "30733"
  Option "BottomY" "29715"
  Option "BottomZ" "511"
 EndSection

Then restore 05-evdev.conf to original file.

Run the command:
cat /proc/bus/input/devices
find your tablet in the list and where it says H: Handlers=mouse# event# mine is H: Handlers=mouse1 event4
copy the mouse# and event#
edit /usr/lib/X11/xorg.conf.d/70-wizardpen.conf
add you event# and mouse# where the event* and mouse* are at
so it looks like this:
Section "InputClass"
   Identifier "wizardpen"
   MatchIsTablet "on"
   MatchDevicePath "/dev/input/event*"
## MatchVendor "UC-LOGIC|KYE Systems|Ace Cad" comment out this line
   Driver "wizardpen"
   Option "TopX" "2650"
   Option "TopY" "3563"
   Option "BottomX" "30733"
   Option "BottomY" "29715"
   Option "TopZ" "10"
   Option "BottomZ" "1023"
EndSection
Section "InputClass"
   Identifier "wizardpen ignore mouse dev"
   MatchIsTablet "on"
   MatchDevicePath "/dev/input/mouse*"
## MatchVendor "UC-LOGIC|KYE Systems|Ace Cad" comment out this line
   Driver ""
EndSection

Restart computer or restartX with a ctrl+backspace
See if it works.