summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2007-10-01 17:56:11 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2007-10-01 17:56:11 +0000
commita82ee64e7d0c4b8c16bd7d52bf016e1c48772993 (patch)
tree057163a9759e29aed995083a75d4c138ddd47d30 /x11-drivers
parentFixing #194280, Manifest / digests were off. (diff)
downloadgentoo-2-a82ee64e7d0c4b8c16bd7d52bf016e1c48772993.tar.gz
gentoo-2-a82ee64e7d0c4b8c16bd7d52bf016e1c48772993.tar.bz2
gentoo-2-a82ee64e7d0c4b8c16bd7d52bf016e1c48772993.zip
Sorry, forgot to commit the actual patch.
(Portage version: 2.1.3.9)
Diffstat (limited to 'x11-drivers')
-rw-r--r--x11-drivers/xf86-input-mouse/ChangeLog6
-rw-r--r--x11-drivers/xf86-input-mouse/files/1.2.2-zaphod-xinerama-fix.diff25
2 files changed, 30 insertions, 1 deletions
diff --git a/x11-drivers/xf86-input-mouse/ChangeLog b/x11-drivers/xf86-input-mouse/ChangeLog
index 45bb6ab75ff2..6408cb72c129 100644
--- a/x11-drivers/xf86-input-mouse/ChangeLog
+++ b/x11-drivers/xf86-input-mouse/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-drivers/xf86-input-mouse
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-mouse/ChangeLog,v 1.54 2007/10/01 08:30:31 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-mouse/ChangeLog,v 1.55 2007/10/01 17:56:11 dberkholz Exp $
+
+ 01 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>;
+ +files/1.2.2-zaphod-xinerama-fix.diff:
+ Sorry, forgot to commit the actual patch.
*xf86-input-mouse-1.2.2-r1 (01 Oct 2007)
diff --git a/x11-drivers/xf86-input-mouse/files/1.2.2-zaphod-xinerama-fix.diff b/x11-drivers/xf86-input-mouse/files/1.2.2-zaphod-xinerama-fix.diff
new file mode 100644
index 000000000000..603af0de6166
--- /dev/null
+++ b/x11-drivers/xf86-input-mouse/files/1.2.2-zaphod-xinerama-fix.diff
@@ -0,0 +1,25 @@
+From: Fredrik Rinnestam <fredrik@obra.se>
+Date: Wed, 19 Sep 2007 21:24:13 +0000 (+0200)
+Subject: Bug #12145: Don't confine the pointer to one screen in zaphod mode.
+X-Git-Url: http://gitweb.freedesktop.org/?p=xorg/driver/xf86-input-mouse.git;a=commitdiff;h=f42ea3027c13046dfa7a603737b476fbf2833764
+
+Bug #12145: Don't confine the pointer to one screen in zaphod mode.
+
+Fix ported from evdev's b4a5a20476f7bc77d54a860d7cdd81c223bdb81f.
+---
+
+--- a/src/mouse.c
++++ b/src/mouse.c
+@@ -1740,10 +1740,10 @@ MouseProc(DeviceIntPtr device, int what)
+ );
+
+ /* X valuator */
+- xf86InitValuatorAxisStruct(device, 0, 0, -1, 1, 0, 1);
++ xf86InitValuatorAxisStruct(device, 0, -1, -1, 1, 0, 1);
+ xf86InitValuatorDefaults(device, 0);
+ /* Y valuator */
+- xf86InitValuatorAxisStruct(device, 1, 0, -1, 1, 0, 1);
++ xf86InitValuatorAxisStruct(device, 1, -1, -1, 1, 0, 1);
+ xf86InitValuatorDefaults(device, 1);
+ #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0
+ xf86MotionHistoryAllocate(pInfo);