little bug, properly handle wheels on 3 button mice.
This commit is contained in:
Zephaniah E. Hull
2006-02-17 01:17:41 +00:00
parent e7d4e6b11e
commit 28ee08ef08
2 changed files with 8 additions and 2 deletions

View File

@@ -1,4 +1,10 @@
2006-02-14 Zephaniah E. Hull,,, <set EMAIL_ADDRESS environment variable>
2006-02-16 Zephaniah E. Hull <warp@aehallh.com>
* src/evdev_btn.c: (EvdevBtnCalcRemap):
Bugzilla #5914 <https://bugs.freedesktop.org/show_bug.cgi?id=5914>
Stupid little bug, properly handle wheels on 3 button mice.
2006-02-14 Zephaniah E. Hull <warp@aehallh.com>
* configure.ac:
* man/evdev.man:

View File

@@ -167,7 +167,7 @@ EvdevBtnCalcRemap (InputInfoPtr pInfo)
pEvdev->state.buttonMap[2] = base;
}
for (j = 0; j < REL_MAX; j++) {
for (i = 0; i < REL_MAX; i++) {
if (pEvdev->state.relToBtnMap[i][0] > pEvdev->state.buttons)
pEvdev->state.buttons = pEvdev->state.relToBtnMap[i][0];
if (pEvdev->state.relToBtnMap[i][1] > pEvdev->state.buttons)