- Remove useless patch, see:

http://bugzilla.gnome.org/show_bug.cgi?id=580761 for details
This commit is contained in:
Bastien Nocera 2009-05-08 00:46:56 +00:00
parent d42bf90576
commit 8e2b5704da
2 changed files with 5 additions and 17 deletions

View File

@ -1,12 +0,0 @@
diff -up gnome-settings-daemon-2.25.90/plugins/mouse/gsd-mouse-manager.c.catch-deviceadded gnome-settings-daemon-2.25.90/plugins/mouse/gsd-mouse-manager.c
--- gnome-settings-daemon-2.25.90/plugins/mouse/gsd-mouse-manager.c.catch-deviceadded 2009-02-04 23:23:55.000000000 -0500
+++ gnome-settings-daemon-2.25.90/plugins/mouse/gsd-mouse-manager.c 2009-02-04 23:22:13.000000000 -0500
@@ -320,7 +320,7 @@ devicepresence_filter (GdkXEvent *xevent
if (xev->type == xi_presence)
{
XDevicePresenceNotifyEvent *dpn = (XDevicePresenceNotifyEvent *) xev;
- if (dpn->devchange == DeviceEnabled)
+ if (dpn->devchange == DeviceEnabled || dpn->devchange == DeviceAdded)
set_mouse_settings ((GsdMouseManager *) data);
}
return GDK_FILTER_CONTINUE;

View File

@ -1,6 +1,6 @@
Name: gnome-settings-daemon
Version: 2.26.1
Release: 3%{?dist}
Release: 4%{?dist}
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
Group: System Environment/Daemons
@ -32,9 +32,6 @@ BuildRequires: gettext
BuildRequires: autoconf, automake, libtool, intltool
BuildRequires: fontconfig-devel
# http://bugzilla.redhat.com/474758
Patch10: gnome-settings-daemon-2.24.0-catch-deviceadded.patch
# http://bugzilla.gnome.org/show_bug.cgi?id=578444
Patch11: gnome-settings-daemon-2.26.0-support-touchpads.patch
@ -59,7 +56,6 @@ developing applications that use %{name}.
%prep
%setup -q
%patch10 -p1 -b .catch-deviceadded
%patch11 -p1 -b .support-touchpads
%patch12 -p1 -b .lefthand-touchpad
@ -174,6 +170,10 @@ fi
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
%changelog
* Fri May 08 2009 Bastien Nocera <bnocera@redhat.com> 2.26.1-4
- Remove useless patch, see:
http://bugzilla.gnome.org/show_bug.cgi?id=580761 for details
* Wed Apr 29 2009 Bastien Nocera <bnocera@redhat.com> 2.26.1-3
- Don't set touchpads to be left-handed, otherwise the tap
behaves like the 2nd mouse button (#483639)