Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-evdev/files/1.99.2: 0005-evdev-Port-b4a5a204-Fix-pointer-crossing-screen-bu.patch
Date: Mon, 09 Jun 2008 05:08:22
Message-Id: E1K5Zc9-0002rL-4K@stork.gentoo.org
1 dberkholz 08/06/09 05:08:17
2
3 Added:
4 0005-evdev-Port-b4a5a204-Fix-pointer-crossing-screen-bu.patch
5 Log:
6 (#225181) Bump with patch to fix moving pointers across multiple screens.
7 (Portage version: 2.1.5.4)
8
9 Revision Changes Path
10 1.1 x11-drivers/xf86-input-evdev/files/1.99.2/0005-evdev-Port-b4a5a204-Fix-pointer-crossing-screen-bu.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-evdev/files/1.99.2/0005-evdev-Port-b4a5a204-Fix-pointer-crossing-screen-bu.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-evdev/files/1.99.2/0005-evdev-Port-b4a5a204-Fix-pointer-crossing-screen-bu.patch?rev=1.1&content-type=text/plain
14
15 Index: 0005-evdev-Port-b4a5a204-Fix-pointer-crossing-screen-bu.patch
16 ===================================================================
17 From fec73e1418a4da1b64496faca27b06fef0aa5206 Mon Sep 17 00:00:00 2001
18 From: Sven Wegener <swegener@g.o>
19 Date: Sat, 7 Jun 2008 13:01:22 +0200
20 Subject: [PATCH] evdev: Port b4a5a204 "Fix pointer crossing screen bug." to current master branch
21
22 The commit b4a5a204 fixed an issue, where we can't move the pointer to
23 other screens and this happens in current master branch again. This commit
24 ports the old commit to the current master branch.
25
26 Signed-off-by: Sven Wegener <swegener@g.o>
27 Signed-off-by: Peter Hutterer <peter@××××××××××××.au>
28 ---
29 src/evdev.c | 4 ++--
30 1 files changed, 2 insertions(+), 2 deletions(-)
31
32 diff --git a/src/evdev.c b/src/evdev.c
33 index b146d41..bd01316 100644
34 --- a/src/evdev.c
35 +++ b/src/evdev.c
36 @@ -767,11 +767,11 @@ EvdevAddRelClass(DeviceIntPtr device)
37 return !Success;
38
39 /* X valuator */
40 - xf86InitValuatorAxisStruct(device, 0, 0, -1, 1, 0, 1);
41 + xf86InitValuatorAxisStruct(device, 0, -1, -1, 1, 0, 1);
42 xf86InitValuatorDefaults(device, 0);
43
44 /* Y valuator */
45 - xf86InitValuatorAxisStruct(device, 1, 0, -1, 1, 0, 1);
46 + xf86InitValuatorAxisStruct(device, 1, -1, -1, 1, 0, 1);
47 xf86InitValuatorDefaults(device, 1);
48 xf86MotionHistoryAllocate(pInfo);
49
50 --
51 1.5.5.1
52
53
54
55
56 --
57 gentoo-commits@l.g.o mailing list