anodynos / touchegg

Automatically exported from code.google.com/p/touchegg
4 stars 1 forks source link

mouse movement up/down is super slow compared to left/right #104

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
pointer movement up/down is super slow compared to left/right on the trackpad.

using latest touchegg version as of 9/23/2011.

using apple magic trackpad.

ubuntu 11.04

Original issue reported on code.google.com by fra...@gmail.com on 23 Sep 2011 at 5:07

GoogleCodeExporter commented 8 years ago
Hello!

Do you have the same problem if you kill Touchégg? ($ killall -9 touchegg) I 
think that probably this is a problem with your synaptics configuration, test 
the synaptkis (KDE) and GPointingDeviceSettings (Gnome) tools

Original comment by jose.exposito89@gmail.com on 25 Sep 2011 at 10:57

GoogleCodeExporter commented 8 years ago
Hi Jose,

You are right, the problem was with the synaptics configuration.  Maybe because 
I was using multiple monitors.

anyway I found a configuration which fixed it in 
http://askubuntu.com/questions/5907/apple-magic-trackpad-multitouch-configuratio
n:

Section "InputClass"      
    Identifier      "Apple Magic Trackpad"
    MatchIsTouchpad "on"
    MatchUSBID      "05ac:030e"
    Driver          "synaptics"
    Option          "VertScrollDelta"  "50"
    Option          "HorizScrollDelta" "50"
    Option          "MinSpeed"         "0.6"
    Option          "MaxSpeed"         "1.3" 
    Option          "AccelFactor"      "0.08"
    # these two options are for multiple monitors 3:1 ratio.  
    Option          "VertResolution"   "1"
    Option          "HorizResolution"  "3"
EndSection

Thanks!

Original comment by fra...@gmail.com on 26 Sep 2011 at 3:36

GoogleCodeExporter commented 8 years ago
Nice :D

Original comment by jose.exposito89@gmail.com on 26 Sep 2011 at 8:47