https://bugs.kde.org/show_bug.cgi?id=395722
Rich <r...@welovemicro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |r...@welovemicro.com --- Comment #16 from Rich <r...@welovemicro.com> --- (In reply to Adrian from comment #8) > Similar situation in up-to-date KDE in Kubuntu 18.04. > I have "Mouse click emulation" option enabled so: > - tap one finger = left mouse button > - tap two fingers = right mouse button > - two fingers slide = scroll > Unfortunately after back from suspend only "tap one finger" works. > Workaround of this problem is: > "sudo modprobe -r psmouse" before suspend and > "sudo modprobe psmouse" after resume from suspend > Script for this in here: > https://ubuntuforums.org/showthread.php?t=2182922&page=2 Same issue for me. I fixed by running modprobe as you mention. Create a file called whatever you want (trackpad in this case) ``` cat /usr/lib/systemd/system-sleep/trackpad #!bin/bash if [ "${1}" == "pre" ]; then modprobe -r psmouse ;; elif [ "${1}" == "post" ]; then modprobe psmouse ;; fi ``` Then make it executable: ``` chmod +x /usr/lib/systemd/system-sleep/trackpad ``` Many thanks for your help!!! -- You are receiving this mail because: You are watching all bug changes.