[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-17 Thread Launchpad Bug Tracker
This bug was fixed in the package xserver-xorg-input-synaptics -
1.1.2-1ubuntu3

---
xserver-xorg-input-synaptics (1.1.2-1ubuntu3) karmic; urgency=low

  * debian/patches:
- 112_jumpy_cursor_quirks.patch: Make sure that the quirk
  affects only the Dell Mini 10v (LP: #405943).
- 103_enable_cornertapping.patch: Don't trigger middle click
  when tapping on the top right corner button (LP: #386017).

 -- Alberto Milone alberto.mil...@canonical.com   Mon, 17 Aug 2009
10:31:14 +0200

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: In Progress = Fix Released

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-17 Thread nh2
Works fine for me, too.

@ Alberto Milone:
I don't think disabling the middle click corner tapping completely is the best 
solution, but let's discuss this in Bug 386017.

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-15 Thread Sandro Mani
I suspect this issue could be related with the one I described in bug
#414127. Is anyone who is experiencing this issue also experiencing
issues like the one I described there?

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-14 Thread Alberto Milone
@Max
Yes, that note was written to remind me to remove those lines.

My next patch will detect the name of your laptop/netbook and preserve
the default behaviour unless it's dealing with a Dell Mini10v

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-13 Thread Alberto Milone
@Marc

Please follow these steps so that I can see what's happening:

1. Enable the universe repository and refresh your packages list.

2. Download and install the deb package of synaptics-report (which
works on hardy, jaunty and karmic) from this PPA:
https://launchpad.net/~albertomilone/+archive/ppa

3. Press CTRL-ALT-F1 to go to the 1st terminal (you'll see only the
command line) and log in.

4. Type the following command:

sudo synaptics-report

and follow the instructions which the program will give you.

5. Press ALT-F7 to go back to your desktop environment

6. Look for the synaptics_report.log file in the same directory in which
you executed the synaptics-report command (usually your home directory)
and attach the file.

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: Triaged = In Progress

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
 Assignee: (unassigned) = Alberto Milone (albertomilone)

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-13 Thread Max Bowsher
Confirming these symptoms on Acer Aspire One. I will do a synaptics-
report now.

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-13 Thread Max Bowsher
Whilst running synaptics-report, there was a shell error message. The line:
if [ $MAJOR -ge 1 ]  [ $MINOR -ge 4 ]; then
is inadequately quoted. As the line:
# NOTE: this won't work outside of X
indicates, this part won't work outside of X, in which case $MAJOR and $MINOR 
will be empty strings. You should defensively quote them. ( [ $MAJOR -ge 
..)

Also, the logic of the version test is wrong: Should be ( major  1 || (
major == 1  minor = 4 ) ), not ( major = 1   minor = 4 ).

Now, on to the actual attachment

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-13 Thread Max Bowsher

** Attachment added: synaptics_report.log
   http://launchpadlibrarian.net/30286681/synaptics_report.log

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-13 Thread luke.varnadore
Same deal here on an MSI Wind U100.

** Attachment added: synaptics_report.log
   http://launchpadlibrarian.net/30288211/synaptics_report.log

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-08-10 Thread Marc A. Donges
Yes, indeed, recompiling without 112_jumpy_cursor_quirks.patch fixes the
issue.

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-07-30 Thread William Grant
It's probably the over-broad 112_jumpy_cursor_quirks.patch, which I've
expressed concerns about before.

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

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Importance: Undecided = High

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-07-29 Thread Marc A. Donges
Reason for nomination:

1. Regression: Can be trivially fixed by removing the patch that broke
things.

2. Bug is deal breaker for users of affected hardware.

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-07-29 Thread Marc A. Donges

** Attachment added: Xorg.log
   http://launchpadlibrarian.net/29689367/Xorg.log

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 405943] Re: [regression] rapid pointer movements with touchpad ignored

2009-07-28 Thread Marc A. Donges
** Summary changed:

- decrease responsibility after last update
+ [regression] rapid pointer movements with touchpad ignored

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp