- Don't call SetPointerMapping when using Xinput since it duplicates effort

but gets touchpads wrong (bug 324721)
This commit is contained in:
Ray Strode 2008-12-10 22:53:55 +00:00
parent 63caf2c86d
commit 7604db919c
2 changed files with 12 additions and 1 deletions

View File

@ -19,3 +19,10 @@ diff --git a/plugins/mouse/gsd-mouse-manager.c b/plugins/mouse/gsd-mouse-manager
class_info = device_info->inputclassinfo;
for (i = 0; i < device_info->num_classes; i++) {
if (class_info->class == ButtonClass) {
@@ -356,6 +361,7 @@
#ifdef HAVE_XINPUT
if (supports_xinput_devices ()) {
set_xinput_devices_left_handed (left_handed);
+ return;
}
#endif

View File

@ -1,6 +1,6 @@
Name: gnome-settings-daemon
Version: 2.24.1
Release: 7%{?dist}
Release: 8%{?dist}
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
Group: System Environment/Daemons
@ -181,6 +181,10 @@ fi
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
%changelog
* Wed Dec 10 2008 Ray Strode <rstrode@redhat.com> - 2.24.1-8
- Don't call SetPointerMapping when using Xinput since
it duplicates effort but gets touchpads wrong (bug 324721)
* Wed Dec 10 2008 Ray Strode <rstrode@redhat.com> - 2.24.1-7
- Shutdown cleanly when bus goes away (bug 445898 again)