From b72531169dc85de1ddd95395d0281e458ad27345 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 28 Apr 2008 08:07:36 +0000 Subject: - 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 (backport from HEAD) --- NEWS | 4 ++++ lib/mouse.pm | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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'; } } -- cgit v1.2.1