Compare commits

..

3 Commits

Author SHA1 Message Date
Peter Hutterer
6eab92c7e7 evdev 2.3.3
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-04-12 10:57:33 +10:00
Peter Hutterer
0e9990bf3b man: fix man page formatting for option EmulateWheel.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit 99505011d1)

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-03-11 15:19:22 +10:00
Peter Hutterer
9d2156e5a6 Don't reopen ad infinitum if reopen_attempts is 0.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-01-08 13:41:13 +10:00
3 changed files with 3 additions and 2 deletions

View File

@@ -22,7 +22,7 @@
AC_PREREQ(2.57) AC_PREREQ(2.57)
AC_INIT([xf86-input-evdev], AC_INIT([xf86-input-evdev],
2.3.2, 2.3.3,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-input-evdev) xf86-input-evdev)

View File

@@ -83,6 +83,7 @@ button event is registered. Property: "Evdev Middle Button Emulation".
Sets the timeout (in milliseconds) that the driver waits before deciding Sets the timeout (in milliseconds) that the driver waits before deciding
if two buttons where pressed "simultaneously" when 3 button emulation is if two buttons where pressed "simultaneously" when 3 button emulation is
enabled. Default: 50. Property: "Evdev Middle Button Timeout". enabled. Default: 50. Property: "Evdev Middle Button Timeout".
.TP 7
.BI "Option \*qEmulateWheel\*q \*q" boolean \*q .BI "Option \*qEmulateWheel\*q \*q" boolean \*q
Enable/disable "wheel" emulation. Wheel emulation means emulating button Enable/disable "wheel" emulation. Wheel emulation means emulating button
press/release events when the mouse is moved while a specific real button press/release events when the mouse is moved while a specific real button

View File

@@ -378,7 +378,7 @@ EvdevReopenTimer(OsTimerPtr timer, CARD32 time, pointer arg)
pEvdev->reopen_left--; pEvdev->reopen_left--;
if (!pEvdev->reopen_left) if (pEvdev->reopen_left <= 0)
{ {
xf86Msg(X_ERROR, "%s: Failed to reopen device after %d attempts.\n", xf86Msg(X_ERROR, "%s: Failed to reopen device after %d attempts.\n",
pInfo->name, pEvdev->reopen_attempts); pInfo->name, pEvdev->reopen_attempts);