web-dev-qa-db-ja.com

タッチパッドの左ボタンを押したままにして12.04にドラッグしても右クリックできない

12.04に更新した後、マウスボタンを使用できません。タッチパッドだけでドラッグできるように、また右クリックでタッチパッドを使用できるように回避策があります。ただし、実際のボタンを使用してドラッグアンドドロップし、実際に右クリックしたいと思います。 Acer Aspire S3シリーズのラップトップを持っています。なぜこれが起こっているのか、どうすれば修正できるのか誰にも分かりますか?

4
Kent Larsen Sr.

これは、ボタンのないタッチパッド、つまりクリックパッドを右クリックするための修正です!!

フォルダーを作成します。

/etc/X11/xorg.conf.d/

51.synaptics.confというファイルを作成します

ルートでgeditを開き、ファイルに次のテキストを含む上記のフォルダーにファイルを保存します。

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

ログアウトしてから再度ログインすると、右クリックできます

クリックパッドがなく、実際のボタンでタッチパッドがオフにできるものを確認する場合:

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

もし私があなただったら、私のコメントを見てリンクをたどると、あなたの問題を解決するのに役立つはずです。

3
oneofthemany

タッチパッドがクリックパッドとして認識されない場合[ソフトボタン領域を持つタッチパッドの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
3
oneofthemany