[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2017-10-26 Thread Bug Watch Updater
Launchpad has imported 29 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=324721.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2007-10-09T11:44:32+00:00 David wrote:

Description of problem:

If you change the mouse preferences to left handed, this SHOULD NOT change the
functionality of a tap on a laptop's touchpad, which should still function as
the primary mouse button click.

But on f7, switching to use a left-handed mouse changes the touchpad touch
functionality to be the reverse of what you'd expect.  This is annoying and
frustrating to left-handed users.

>From dmesg:
input: PS/2 Mouse as /class/input/input1
input: AlpsPS/2 ALPS GlidePoint as /class/input/input2
input: AT Translated Set 2 keyboard as /class/input/input3

Versions:
Kernel 2.6.22.9-91.fc7
nautilus-2.18.3-1.fc7

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-settings-
daemon/+bug/27724/comments/7


On 2007-10-10T23:08:41+00:00 Matěj wrote:

Being a left-handed myself, I would ask just one question -- why do you use
left-handed mouse settings with touchpad? It doesn't make any sense to me. Do
you use both mouse and touchpad in the same time?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-settings-
daemon/+bug/27724/comments/8


On 2007-10-10T23:28:31+00:00 David wrote:

I normally use an external mouse when my notebook is at home but if I decide to
use the touchpad or take the computer somewhere where I need to use it because I
don't have the mouse, then I shouldn't need to go into the settings to switch it
back to right handedthat becomes very annoying after 100 or so times of
using the notebook at home and then using it elsewhere, having to switch it.


Reply at: 
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/27724/comments/9


On 2008-05-14T14:40:58+00:00 Bug wrote:

This message is a reminder that Fedora 7 is nearing the end of life.
Approximately 30 (thirty) days from now Fedora will stop maintaining and
issuing updates for Fedora 7. It is Fedora's policy to close all bug
reports from releases that are no longer maintained. At that time this
bug will be closed as WONTFIX if it remains open with a Fedora 'version'
of '7'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the
'version' to a later Fedora version prior to Fedora 7's end of life.

Bug Reporter: Thank you for reporting this issue and we are sorry that
we may not be able to fix it before Fedora 7 is end of life. If you
would still like to see this bug fixed and are able to reproduce it
against a later version of Fedora please change the 'version' of this
bug. If you are unable to change the version, please add a comment here
and someone will do it for you.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a more
recent Fedora release includes newer upstream software that fixes bugs
or makes them obsolete. If possible, it is recommended that you try the
newest available Fedora distribution to see if your bug still exists.

Please read the Release Notes for the newest Fedora distribution to make sure 
it will meet your needs:
http://docs.fedoraproject.org/release-notes/

The process we are following is described here:
http://fedoraproject.org/wiki/BugZappers/HouseKeeping

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-settings-
daemon/+bug/27724/comments/10


On 2008-07-15T05:35:49+00:00 Peter wrote:

This isn't really a mouse driver bug, it's a conceptual issue with the X
server's event processing.

Problem being that the SetPointerMapping request by default changes the core
pointer device. Up to X11R7.4, any core event, no matter who actually generates
it, comes from the core pointer and thus assumes the core pointer's mapping
(which in your case is left-handed).

This problem is fixed in Xorg git, but needs a vastly different input system. It
also requires configuration tools to set the button mapping per device, and not
just for the core pointer.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-settings-
daemon/+bug/27724/comments/11


On 2008-07-15T07:41:26+00:00 Peter wrote:

Did some more research, fix is possible for F9.

X.Org Bug 11683 [1] changed the mapping behaviour to take the device's 

[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-09-10 Thread Sebastien Bacher
the issue is fixed in karmic

** Changed in: gnome-settings-daemon (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-09-10 Thread Alberto Milone
@Robert
Those values are hard coded in the original driver too.

It looks like upstream decided to apply the following changes in g-s-d:

1) Don't swap mouse buttons for left-handers on the touchpad (otherwise
a tap would be a right-click)
2) If XInput is supported, don't switch the core pointer to left-handed,
as it would cancel our other settings

http://git.gnome.org/cgit/gnome-settings-
daemon/commit/?id=6a3bedfcb9be30b883a145d7e4ce83fd9cbc3e25


I'm marking the report as invalid for the synaptics driver.

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: New = Invalid

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-06-19 Thread Robert Hooker
This is because of patch 104_always_enable_tapping.patch in xserver-
xorg-input-synaptics which hard codes the initial tapbutton values in
the source, and the values need to be different when in left handed
mode.

-/* Enable tap if we don't have a phys left button */
-tapButton1 = priv-has_left ? 0 : 1;
-tapButton2 = priv-has_left ? 0 : 3;
-tapButton3 = priv-has_left ? 0 : 2;
+/* Enable tap */
+tapButton1 = 1;
+tapButton2 = 2;
+tapButton3 = 3;

From man synaptics --

   Button mapping for physical buttons is handled in the server.  If
the device is switched to left-handed (an in-server mapping  of physical
buttons 1, 2, 3 to the logical buttons 3, 2, 1, respectively), both
physical and TapButtons are affected. To counteract this, the TapButtons
need to be set up in reverse order (TapButton1=3, TapButton2=1).


They have added support of enabling/disabling TapButtons via input properties 
in the g-s-d mouse capplet upstream now, but perhaps an additional check for 
left handedness could be added to change how it assigns the buttons?

http://git.gnome.org/cgit/gnome-settings-
daemon/commit/?id=4eb9bd09219afbb56f114a2d10bc585e24db803e

Sorry if I'm misunderstanding the situation.

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-05-25 Thread Frosen
I approve that bug. Is there a workaround for Jaunty? It would be
fantastic!

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-05-09 Thread Hans Hellén
Excuse me, but where is the released fix? For Jaunty.

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-05-09 Thread Martin Olsson
It's marked as fixed in the Fedora operating system only, there is no
bugfix created for Ubuntu yet. However, it seems that some people using
Fedora also reported that the bugfix that shipped in Fedora did _not_
actually solve the issue so a new RH bug was opened here:
https://bugzilla.redhat.com/show_bug.cgi?id=483639

** Bug watch added: Red Hat Bugzilla #483639
   https://bugzilla.redhat.com/show_bug.cgi?id=483639

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2009-01-30 Thread Bug Watch Updater
** Changed in: gnome-settings-daemon (Fedora)
   Status: In Progress = Fix Released

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2008-12-12 Thread Bug Watch Updater
** Changed in: gnome-settings-daemon (Fedora)
   Status: Fix Committed = In Progress

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2008-12-10 Thread Bug Watch Updater
** Changed in: gnome-settings-daemon (Fedora)
   Status: In Progress = Fix Committed

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2008-11-01 Thread William Grant
** Tags added: input-config-ui

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2008-10-17 Thread William Grant
-synaptics now says that it's an XI_TOUCHPAD, so g-s-d just needs to
DTRT.

** Bug watch added: Red Hat Bugzilla #324721
   https://bugzilla.redhat.com/show_bug.cgi?id=324721

** Also affects: gnome-settings-daemon (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=324721
   Importance: Unknown
   Status: Unknown

** Changed in: gnome-settings-daemon (Ubuntu)
Sourcepackagename: xserver-xorg-input-synaptics = gnome-settings-daemon

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2008-10-17 Thread Bug Watch Updater
** Changed in: gnome-settings-daemon (Fedora)
   Status: Unknown = In Progress

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2007-08-02 Thread unikuser
TabButton thing worked for me.

I had a case where I want my mouse to swith button, but don't want
touchpad to swiitch buttons. For this, instead of selecting left hand
button in gnome, I have changed xorg.conf to switch normal mouse buttons
and keep touchpad buttons unswapped.

Option  ButtonMapping 3 2 1  ( add this to normal mouse and not
touchpad)

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2007-08-02 Thread unikuser
TabButton thing worked for me.

I had a case where I want my mouse to swith button, but don't want
touchpad to swiitch buttons. For this, instead of selecting left hand
button in gnome, I have changed xorg.conf to switch normal mouse buttons
and keep touchpad buttons unswapped.

Option  ButtonMapping 3 2 1  ( add this to normal mouse and not
touchpad)

-- 
Touchpads should be unaffected by left handed mouse option
https://bugs.launchpad.net/bugs/27724
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 27724] Re: Touchpads should be unaffected by left handed mouse option

2006-09-25 Thread Matthew Lange
Would this also apply to the package that sets the right-handed or left-
handed flag? I'm not sure what actually takes care of that; synaptics or
a gnome package. If it's a gnome package, it should be flagged under
this bug too.

-- 
Touchpads should be unaffected by left handed mouse option
https://launchpad.net/bugs/27724

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs