summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-04-28 08:06:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-04-28 08:06:15 +0000
commit02d7b59cc229503feb6db17c5285cde8f9501c57 (patch)
treeedf7f35e4832d1510e1c577e2ff2ae0fb5375620
parent5a1e7b44043c945fa31b40f7554cca58c828a402 (diff)
downloaddrakx-kbd-mouse-x11-02d7b59cc229503feb6db17c5285cde8f9501c57.tar
drakx-kbd-mouse-x11-02d7b59cc229503feb6db17c5285cde8f9501c57.tar.gz
drakx-kbd-mouse-x11-02d7b59cc229503feb6db17c5285cde8f9501c57.tar.bz2
drakx-kbd-mouse-x11-02d7b59cc229503feb6db17c5285cde8f9501c57.tar.xz
drakx-kbd-mouse-x11-02d7b59cc229503feb6db17c5285cde8f9501c57.zip
- mousedrake:
o evdev and imwheel handle orthogonal things, so do use imwheel even if we need evdev (#40088) nb: the tests on logitech mice were ok because of the ubstable entry
-rw-r--r--NEWS4
-rw-r--r--lib/mouse.pm3
2 files changed, 6 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 959c9b3..48f6704 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+- mousedrake:
+ o evdev and imwheel handle orthogonal things, so do use imwheel even if we
+ need evdev (#40088)
+
Version 0.57 - 2 April 2008
- XFdrake:
diff --git a/lib/mouse.pm b/lib/mouse.pm
index a0814e7..93a06ba 100644
--- a/lib/mouse.pm
+++ b/lib/mouse.pm
@@ -316,7 +316,8 @@ sub detect_evdev_mice {
}
if ($_->{HWHEEL}) {
$_->{want_evdev} = 1;
- } elsif ($_->{SIDE}) {
+ }
+ if ($_->{SIDE}) {
$imwheel ||= 'generic';
}
}