~ubuntu-branches/ubuntu/maverick/gnome-settings-daemon/maverick

« back to all changes in this revision

Viewing changes to debian/patches/11_change_tap_to_click_order.patch

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-04-23 17:16:35 UTC
  • Revision ID: james.westby@ubuntu.com-20100423171635-o60tkjxjq85vcoug
Tags: 2.30.0-0ubuntu6
* debian/patches/16_use_synchronous_notifications.patch:
  - Make sure the media keys plugin links with libnotify
* debian/patches/90_autoreconf.patch:
  - Refreshed to pick up the change above

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
diff -Nurp gnome-settings-daemon-2.30.0.orig/plugins/mouse/gsd-mouse-manager.c gnome-settings-daemon-2.30.0/plugins/mouse/gsd-mouse-manager.c
2
 
--- gnome-settings-daemon-2.30.0.orig/plugins/mouse/gsd-mouse-manager.c 2010-03-10 12:59:38.000000000 +0100
3
 
+++ gnome-settings-daemon-2.30.0/plugins/mouse/gsd-mouse-manager.c      2010-04-14 15:40:43.962020629 +0200
4
 
@@ -616,8 +616,8 @@ set_tap_to_click (gboolean state, gboole
5
 
                         {
6
 
                                 /* Set RLM mapping for 1/2/3 fingers*/
7
 
                                 data[4] = (state) ? ((left_handed) ? 3 : 1) : 0;
8
 
-                                data[5] = (state) ? ((left_handed) ? 1 : 3) : 0;
9
 
-                                data[6] = (state) ? 2 : 0;
10
 
+                                data[5] = (state) ? ((left_handed) ? 1 : 2) : 0;
11
 
+                                data[6] = (state) ? 3 : 0;
12
 
                                 XChangeDeviceProperty (GDK_DISPLAY (), device, prop, XA_INTEGER, 8,
13
 
                                                         PropModeReplace, data, nitems);
14
 
                         }