右键单击在 Elantech 触摸板上不起作用

Eug*_*sky 1 touchpad

两指或三指都没有点击。其他一切都完美无缺(两指滚动、拖动等)。核心是3.2.0.25。

小智 6

通常,Elantech 触摸板在 Ubuntu 12.04 中开箱即用(对于 Ubuntu 12.04 LTS 上的内核 3.3-rc5,Elantech 驱动程序运行良好)。

在 3.2 中所做的更改:

  • 整个键盘是左按钮,因此没有右按钮。但是,对 Synaptics 驱动程序的修订恢复了点击板功能。有关Ubuntu 软件包和说明,请参见此处
  • 单击和拖动是通过单击键盘上的任意位置并移动手指来完成的。
  • 鼠标右键可用作两指点击。
  • 中间按钮可用作三指点击。

您还可以使用 synclient 设置触摸板。这是来自 Aurélien Jacobs 和 Marcus Möller 的示例脚本。您可以~/bin/touchpad_settings使用 gnome-session-properties 将其另存为并添加为 Unity 启动脚本:

# higher sensitivity
synclient FingerLow=9 FingerHigh=12

# faster speed and acceleration
synclient MinSpeed=1.5 MaxSpeed=3.5 AccelFactor=0.1

# 2 fingers scroll (can be also enabled in System Settings)
synclient VertTwoFingerScroll=1 HorizTwoFingerScroll=1

# faster coasting
synclient CoastingSpeed=10

# enable tap to click (2 fingers for middle click, 3 fingers for right click)
synclient TapButton1=1 TapButton2=3 TapButton3=2

# continue dragging movement when reaching the edge of the touchpad
synclient EdgeMotionMinZ=30 EdgeMotionMaxZ=40 EdgeMotionMinSpeed=100 EdgeMotionMaxSpeed=400
Run Code Online (Sandbox Code Playgroud)