- Re-enable the touchpad left-handed fix, and checking for the right device

type (extension pointer, not extension device) (#483639)
This commit is contained in:
Bastien Nocera 2009-04-29 15:24:09 +00:00
parent 3cb0cecfc2
commit 1a5b00721a
2 changed files with 20 additions and 2 deletions

View File

@ -26,3 +26,16 @@ diff --git a/plugins/mouse/gsd-mouse-manager.c b/plugins/mouse/gsd-mouse-manager
+ return;
}
#endif
diff --git a/plugins/mouse/gsd-mouse-manager.c b/plugins/mouse/gsd-mouse-manager.c
--- gnome-settings-daemon-2.24.1/plugins/mouse/gsd-mouse-manager.c.catch-device-added 2009-04-29 14:35:00.000000000 +0100
+++ gnome-settings-daemon-2.24.1/plugins/mouse/gsd-mouse-manager.c 2009-04-29 15:50:29.000000000 +0100
@@ -274,7 +274,7 @@ set_xinput_devices_left_handed (gboolean
for (i = 0; i < n_devices; i++) {
XDevice *device = NULL;
- if ((device_info[i].use != IsXExtensionDevice) ||
+ if ((device_info[i].use != IsXExtensionPointer) ||
(!xinput_device_has_buttons (&device_info[i])))
continue;

View File

@ -1,6 +1,6 @@
Name: gnome-settings-daemon
Version: 2.24.1
Release: 9%{?dist}
Release: 10%{?dist}
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
Group: System Environment/Daemons
@ -76,7 +76,7 @@ developing applications that use %{name}.
%patch11 -p1 -b .behdad
%patch12 -p1 -b .umask
%patch13 -p1 -b .shutdown-cleanly
#%patch14 -p1 -b .fix-touchpad
%patch14 -p1 -b .fix-touchpad
%patch15 -p1 -b .catch-device-added
%build
@ -181,6 +181,11 @@ fi
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
%changelog
* Wed Apr 29 2009 Bastien Nocera <bnocera@redhat.com> 2.24.1-10
- Re-enable the touchpad left-handed fix, and checking for the
right device type (extension pointer, not extension device)
(#483639)
* Thu Dec 18 2008 Ray Strode <rstrode@redhat.com> - 2.24.1-9
- Disable touchpad patch for now. It's not right.