无法在触摸板上按住左键并在12.04中拖动而没有右键单击

更新到12.04后,我无法使用鼠标按钮。 我有一个可以单独用触摸板拖动的工作,也可以使用触摸板进行右键单击。 但是,我想使用实际按钮进行拖放,实际上是右键单击。 我有一台宏碁Aspire S3系列笔记本电脑。 有谁知道为什么会发生这种情况以及如何解决这个问题?

这是右键单击触摸板没有按钮即单击键盘的修复程序!

创建一个文件夹:

/etc/X11/xorg.conf.d/ 

创建一个名为51.synaptics.conf的文件

在root中打开gedit并将文件保存在上面的文件夹中,文件中包含以下文本:

 Section "InputClass" Identifier "Default clickpad buttons" MatchDriver "synaptics" Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" EndSection 

注销然后重新登录,您将右键单击

如果您没有触控板并且有实际按钮,请查看触控板的function:

 xinput -list (to find the name of your touchpad) 

然后:

 xinput list-props "SynPS/2 Synaptics TouchPad" | grep Capabilities 

你应该看到这样的输出:

 Synaptics Capabillities (295): 1, 0, 0, 1, 1, 1, 1 

数字表示以下内容:

 (1) device has a physical left button (0) device does not have a physical middle button (0) device does not have a physical right button (1) device does support two-finger detection (1) device does support three-finger detection (1) device can configure vertical resolution (1) device can configure horizontal resolution 

如果我是你,我会看看我的评论,并按照链接,这应该有助于解决您的问题。

如果您的触摸板未被识别为点击键[具有软按键区域的触摸板的linux术语],则可以使用以下51.synaptics.conf文件:

 Section "InputClass" Identifier "Default clickpad buttons" MatchDriver "synaptics" Option "ClickPad" "true" Option "EmulateMidButtonTime" "0" Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" EndSection