You are not logged in.
On a recent update, I noticed that my desktop would not detect my mouse's left-click. It correctly detects middle-click and right-click, however. On the other hand, I can left-click with a tablet.
How can I make it so that it will detect both the mouse and tablet's left-clicks?
I'm using evdev for the mouse, and linuxwacom-bamboo for tablet drivers.
Edit: My bad, it was a hardware problem! Bought a new mouse to fix it.
My xorg.conf.d configurations are:
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "Wacom class"
# WALTOP needs a patched kernel driver, that isn't in mainline lk yet,
# so for now just let it fall through and be picked up by evdev instead.
# MatchProduct "Wacom|WALTOP|WACOM"
MatchProduct "Wacom|WACOM|Hanwang"
MatchDevicePath "/dev/input/event*"
Driver "wacom"
Option "Suppress" "10"
Option "PressureCurve" "0 0 90 100"
Option "Mode" "Relative"
Option "Threshold" "200"
EndSection
Section "InputClass"
Identifier "Wacom serial class"
MatchProduct "Serial Wacom Tablet"
Driver "wacom"
Option "Suppress" "10"
Option "PressureCurve" "0 0 90 100"
Option "Mode" "Relative"
Option "Threshold" "200"
EndSection
Section "InputClass"
Identifier "Wacom serial class identifiers"
MatchProduct "WACf|FUJ02e5|FUJ02e7|FUJ02e9"
Driver "wacom"
Option "Suppress" "10"
Option "PressureCurve" "0 0 90 100"
Option "Mode" "Relative"
Option "Threshold" "200"
EndSection
# N-Trig Duosense Electromagnetic Digitizer
Section "InputClass"
Identifier "Wacom N-Trig class"
MatchProduct "HID 1b96:0001|N-Trig Pen"
MatchDevicePath "/dev/input/event*"
Driver "wacom"
Option "Button2" "3"
Option "Suppress" "10"
Option "PressureCurve" "0 0 90 100"
Option "Mode" "Relative"
Option "Threshold" "200"
EndSection
Last edited by japtar10101 (2011-06-07 01:16:23)
Offline