[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xserver-xorg-input-synaptics: Changes to 'ubuntu+1'



 debian/changelog                                    |    7 +++++++
 debian/patches/127_default_drag_lock.patch          |   13 +++++++++++++
 debian/patches/128_disable_three_click_action.patch |   13 +++++++++++++
 debian/patches/series                               |    2 ++
 4 files changed, 35 insertions(+)

New commits:
commit f985c47039e7b55a538e7fd773d0faeafba1054d
Author: Chase Douglas <chase.douglas@canonical.com>
Date:   Mon Feb 13 20:52:12 2012 -0800

    releasing version 1.5.0+git20120210-0ubuntu2

diff --git a/debian/changelog b/debian/changelog
index a6788c4..0a121ca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu2) UNRELEASED; urgency=low
+xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu2) precise; urgency=low
 
   * Enable tap-and-drag locked drags by default
   * Disable three-click action by default so three touch gestures work
 
- -- Chase Douglas <chase.douglas@ubuntu.com>  Mon, 13 Feb 2012 20:32:32 -0800
+ -- Chase Douglas <chase.douglas@ubuntu.com>  Mon, 13 Feb 2012 20:51:56 -0800
 
 xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu1) precise; urgency=low
 

commit 2132cc443ea17111ba2fe6b05fa9e2e6908d2eba
Author: Chase Douglas <chase.douglas@canonical.com>
Date:   Mon Feb 13 20:33:32 2012 -0800

    Disable three-click action by default so three touch gestures work

diff --git a/debian/changelog b/debian/changelog
index 29c38bc..a6788c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu2) UNRELEASED; urgency=low
 
   * Enable tap-and-drag locked drags by default
+  * Disable three-click action by default so three touch gestures work
 
- -- Chase Douglas <chase.douglas@ubuntu.com>  Mon, 13 Feb 2012 20:28:36 -0800
+ -- Chase Douglas <chase.douglas@ubuntu.com>  Mon, 13 Feb 2012 20:32:32 -0800
 
 xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu1) precise; urgency=low
 
diff --git a/debian/patches/128_disable_three_click_action.patch b/debian/patches/128_disable_three_click_action.patch
new file mode 100644
index 0000000..4db18da
--- /dev/null
+++ b/debian/patches/128_disable_three_click_action.patch
@@ -0,0 +1,13 @@
+Index: xserver-xorg-input-synaptics/src/synaptics.c
+===================================================================
+--- xserver-xorg-input-synaptics.orig/src/synaptics.c	2012-02-13 20:30:53.165083092 -0800
++++ xserver-xorg-input-synaptics/src/synaptics.c	2012-02-13 20:32:17.402508282 -0800
+@@ -497,7 +497,7 @@
+        otherwise clickFinger is always button 1. */
+     clickFinger1 = 1;
+     clickFinger2 = (priv->has_right || priv->has_middle) ? 1 : 3;
+-    clickFinger3 = (priv->has_right || priv->has_middle) ? 1 : 2;
++    clickFinger3 = 0; /* Disabled by default so three-touch gestures work */
+ 
+     /* Enable vert edge scroll */
+     vertEdgeScroll = TRUE;
diff --git a/debian/patches/series b/debian/patches/series
index 1c32bc4..00409ad 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -18,3 +18,4 @@
 125_option_rec_revert.patch
 126_ubuntu_xi22.patch
 127_default_drag_lock.patch
+128_disable_three_click_action.patch

commit 9bb3e799f8a8d0407257ff9d87c4d69d45d95a35
Author: Chase Douglas <chase.douglas@canonical.com>
Date:   Mon Feb 13 20:30:30 2012 -0800

    Enable tap-and-drag locked drags by default

diff --git a/debian/changelog b/debian/changelog
index 7aa89be..29c38bc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu2) UNRELEASED; urgency=low
+
+  * Enable tap-and-drag locked drags by default
+
+ -- Chase Douglas <chase.douglas@ubuntu.com>  Mon, 13 Feb 2012 20:28:36 -0800
+
 xserver-xorg-input-synaptics (1.5.0+git20120210-0ubuntu1) precise; urgency=low
 
   * Update to latest code in git (e6032c3)
diff --git a/debian/patches/127_default_drag_lock.patch b/debian/patches/127_default_drag_lock.patch
new file mode 100644
index 0000000..d1c1823
--- /dev/null
+++ b/debian/patches/127_default_drag_lock.patch
@@ -0,0 +1,13 @@
+Index: xserver-xorg-input-synaptics/src/synaptics.c
+===================================================================
+--- xserver-xorg-input-synaptics.orig/src/synaptics.c	2012-02-13 20:28:22.178606998 -0800
++++ xserver-xorg-input-synaptics/src/synaptics.c	2012-02-13 20:28:22.438610574 -0800
+@@ -558,7 +558,7 @@
+     }
+     pars->scroll_button_repeat = xf86SetIntOption(opts,"ScrollButtonRepeat", 100);
+     pars->touchpad_off = xf86SetIntOption(opts, "TouchpadOff", 0);
+-    pars->locked_drags = xf86SetBoolOption(opts, "LockedDrags", FALSE);
++    pars->locked_drags = xf86SetBoolOption(opts, "LockedDrags", TRUE);
+     pars->locked_drag_time = xf86SetIntOption(opts, "LockedDragTimeout", 5000);
+     pars->tap_action[RT_TAP] = xf86SetIntOption(opts, "RTCornerButton", 2);
+     pars->tap_action[RB_TAP] = xf86SetIntOption(opts, "RBCornerButton", 3);
diff --git a/debian/patches/series b/debian/patches/series
index ae176a5..1c32bc4 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -17,3 +17,4 @@
 124_syndaemon_events.patch
 125_option_rec_revert.patch
 126_ubuntu_xi22.patch
+127_default_drag_lock.patch


Reply to: