双击复制粘贴在 Linux 5.x 上停止工作

双击复制粘贴在 Linux 5.x 上停止工作

我已将内核从原版 4.9.0-12amd64 升级到 5.6.9,双击粘贴(同时按下笔记本电脑触摸板上的鼠标左键和右键)在我的 X 中的编辑器中停止工作。我注意到没有更新任何软件包或更改任何其他配置文件。我确信这是一个缺失的内核选项(希望此功能没有被删除)。有人遇到过这个问题吗?

答案1

好的关于那些无用的恶意答案,我花了很多小时尝试重新编译内核,首先使用与旧内核完全相同的鼠标相关选项(没有用),然后解决了这个问题。然后尝试了这个:

#Section "InputClass"
#    Identifier "middle button emulation class"
#    MatchIsPointer "on"
#    Option "Emulate3Buttons" "on"
#EndSection

然后我尝试将其切换到基于 evdev。apt-get install xserver-xorg-input-evdev

没用。然后我从 xorg.conf 中删除了与 mouse0 相关的所有内容,并添加了以下内容:

Section "InputClass"
   Identifier "middle button"
   MatchIsPointer "on"
   MatchDriver "libinput"
   Option "MiddleEmulation" "on"
EndSection

这招确实奏效了。

相关内容