I'm using Ubuntu 16.04 LTS on ThinkPad T440s and since last Update (which was also the first after installing this version), I'm experiencing annoying "jump-to-up"s when I try to scroll with two fingers on the touchpad (I don't have a mouse, so I haven't tried it with mouse). Explained exactly, It happens when I scroll down, remove my 2 fingers and put it again on top of touchpad to scroll down further, then it scroll to top or just one page up! I thought first it's a chrome issue (because at the same time it's updated to the version 51.0.2704.84) then I recognized it happens outside chrome too… It happens just sometimes and some other times everything goes smooth)! I searched a bit and found nothing similar to this… so I try to ask here before I report it as a bug.
Asked
Active
Viewed 1,098 times
2
-
Possible duplicate of Thinkpad T460P: Scrolling jumps to top on 2 finger touch – David Dean Sep 13 '16 at 23:07
2 Answers
0
I think I had the same issue, this helped me:
id=$(xinput --list --id-only 'SynPS/2 Synaptics TouchPad')
xinput --set-prop $id 'Synaptics Edge Scrolling' 0 0 1

Gleb
- 1
-
1What does this command do? Can you please [edit] your answer so that we're not blindly running commands here? – Kaz Wolfe Jun 30 '16 at 01:21
-
1Welcome to Ask Ubuntu! You might be able to improve this answer with providing the steps needed in more detail to make it a rock solid answer. – Videonauth Jun 30 '16 at 16:45
0
Had the same issue. My workaround was to install xserver-xorg-input-libinput and remove the relevant synaptic configuration:
sudo apt install xserver-xorg-input-libinput
sudo mv /etc/X11/xorg.conf.d/99-synaptics-t440s.conf /etc/X11/xorg.conf.d/99-synaptics-t440s.conf.backup
-
1The solution is correct, but the second command won't work, because there is no
/etc/X11/xorg.conf.d/99-synaptics-t440s.conf
file. – Pilot6 Jul 03 '16 at 09:38 -
Maybe there is another file matching etc/X11/xorg.conf.d/synaptics.conf which is no longer needed. Otherwise omit the second command – user564109 Jul 05 '16 at 21:01