mirror of
https://github.com/X11Libre/xf86-input-evdev.git
synced 2026-04-14 11:44:16 +00:00
Compare commits
3 Commits
xf86-input
...
xf86-input
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6eab92c7e7 | ||
|
|
0e9990bf3b | ||
|
|
9d2156e5a6 |
@@ -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)
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user