I have issue with left click randomly triggering right click action. For example I click with left button in chrome but it opens context menu. This issue happens in any apps.
Ubuntu 20.04. Dell G5 5590
I tried to solve it with multiple advices I found, like:
- adding this content to
/lib/systemd/system-sleep/touchpad
file:
#!/bin/sh
case $1 in
post)
/sbin/rmmod i2c_hid && /sbin/modprobe i2c_hid
;;
esac
and sudo modprobe -r psmouse
command...
- or with adding
blacklist psmouse
to/etc/modprobe.d/blacklist.conf
and executingsudo update-initramfs -u
or also:
modprobe drm_kms_helper
echo N> /sys/module/drm_kms_helper/parameters/poll
echo 'drm_kms_helper' >> /etc/modules-load.d/local.conf
echo "options drm_kms_helper poll=N" >> /etc/modprobe.d/local.conf
but nothing helped. Do you have any other suggestions? note: I'm sure it's not mouse problem, as I tried 3 different mouses (Microsoft Optical Mouse, B200, Logitech M110s)
Tried xev
, at left click I got this log:
ButtonPress event, serial 34, synthetic NO, window 0x4a00001,
root 0x92b, subw 0x0, time 1882500, (118,76), root:(340,290),
state 0x110, button 3, same_screen YES
ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
root 0x92b, subw 0x0, time 1882510, (118,76), root:(340,290),
state 0x510, button 1, same_screen YES
ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
root 0x92b, subw 0x0, time 1882510, (118,76), root:(340,290),
state 0x410, button 3, same_screen YES
ButtonPress event, serial 34, synthetic NO, window 0x4a00001,
root 0x92b, subw 0x0, time 1882694, (118,76), root:(340,290),
state 0x10, button 1, same_screen YES
ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
root 0x92b, subw 0x0, time 1882840, (118,76), root:(340,290),
state 0x110, button 1, same_screen YES
note: I'm sure it's not mouse problem, as I tried 3 different mouses (Microsoft Optical Mouse, B200, Logitech M110s)
I think replacing mouse will not help....... I already did it 3 times, I'm sure 4th mouse will do the same....
– Mlocik97 Mar 09 '23 at 16:56