点击即单击 - 鼠标的短暂移动视为一次单击

点击即单击 - 鼠标的短暂移动视为一次单击

我在联想 y410p Ideapad 上使用 Ubuntu 14.04,我遇到了一个问题,即使我实际移动了光标,鼠标移动也会被识别为点击。例如,也许我的光标距离某个东西 100 像素,然后我快速将光标移动到目标。当我抬起手指时,Ubuntu 认为我已经点击了。

我猜想触控板可以接合多长时间有一个时间阈值,如果移动时间少于该时间,则将其视为点击?如果是这样,我想缩短这个阈值。但也许它不是那样工作的?

这真的很烦人,因为鼠标的任何细微移动通常都会导致点击,经常会无意中关闭选项卡或窗口。

答案1

也许这也有帮助:

编辑文件

/usr/share/X11/xorg.conf.d/50-synaptics.conf 

并编辑“touchpad catchall”部分,使其看起来像这样:

Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"

Option "FingerLow"              "46"
Option "FingerHigh"             "46"
Option "ClickFinger1"           "1"
Option "ClickFinger2"           "2"
Option "ClickFinger3"           "3"
Option "TapButton1"             "1"
Option "TapButton2"             "2"
Option "TapButton3"             "3"
Option "AreaBottomEdge"         "85%"
Option "SoftButtonAreas"        "60% 0 85% 0 40% 60% 85% 0" # Btn2 LRTB - Btn3 LRTB
Option "EmulateMidButtonTime"   "75"
EndSection

(来源:http://memobadz.wordpress.com/2014/02/16/lenovo-yoga-pro-2-on-ubuntu/

尝试一下这里的一些技巧:

联想 Yoga 2 Pro 上的 Ubuntu

相关内容