![MATE는 두 번의 마우스 클릭을 비활성화하여 마우스 가운데 버튼으로 작동합니다.](https://linux55.com/image/102926/MATE%EB%8A%94%20%EB%91%90%20%EB%B2%88%EC%9D%98%20%EB%A7%88%EC%9A%B0%EC%8A%A4%20%ED%81%B4%EB%A6%AD%EC%9D%84%20%EB%B9%84%ED%99%9C%EC%84%B1%ED%99%94%ED%95%98%EC%97%AC%20%EB%A7%88%EC%9A%B0%EC%8A%A4%20%EA%B0%80%EC%9A%B4%EB%8D%B0%20%EB%B2%84%ED%8A%BC%EC%9C%BC%EB%A1%9C%20%EC%9E%91%EB%8F%99%ED%95%A9%EB%8B%88%EB%8B%A4..png)
저는 MATE 데스크탑 환경에서 Fedora 24를 사용하고 있습니다. 하나를 만들었고 dnf update
이제 두 마우스 버튼을 동시에 누르면 마치 마우스 가운데 버튼을 누른 것처럼 작동한다는 것을 알게 되었습니다.
이것을 비활성화하는 방법이 있습니까? 이전에는 이런 현상을 본 적이 없었기 때문에 방금 수행한 업그레이드와 관련이 있을 수 있다고 생각했습니다. 현재 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