私はMATEデスクトップ環境でFedora 24を使用しています。 1つを作成し、dnf update
2つのマウスボタンを同時に押すと、まるでマウスの中央ボタンを押したかのように動作することがわかりました。
これを無効にする方法はありますか?以前は、このような現象を見たことがなかったので、今行ったアップグレードと関連があると考えました。現在、MATE 1.16.1が実行されています。インターネット検索/dconf/その他の設定を表示すると、何も見つかりません。
答え1
答え2
You can disable left+right click acting as middle click for all devices system-wide by adding the file /etc/X11/xorg.conf.d/20-3rdbutton.conf with the following content:
Section "InputClass"
Identifier "middle button"
MatchIsPointer "on"
MatchDriver "libinput"
Option "MiddleEmulation" "off"
EndSection
Adapted from the following Stack Exchange answer: https://unix.stackexchange.com/a/284782