https://bugs.winehq.org/show_bug.cgi?id=53114
Aman Das amandas62640@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |amandas62640@gmail.com
--- Comment #27 from Aman Das amandas62640@gmail.com --- (In reply to mistermagio from comment #26)
(In reply to msizanoen from comment #24)
This issue can currently be worked around with the following command:
xinput list --name-only | grep ^xwayland-pointer-gestures | xargs -n1 xinput disable
Please note that this will disable touchpad gestures for ALL X11 applications. To revert this, run the same command with `disable` replaced with `enable`.
Thanks for the workaround ! Is there a way to make this persist through reboots?
I was struggling to apply the workaround persistently too. Found a solution: add an `Xinput-Disable-XWayland-Gestures.desktop` file to `~/.config/autostart/` to run the command at startup.
Its content should be like:
``` [Desktop Entry] Encoding=UTF-8 Type=Application Terminal=false Exec=xinput disable xwayland-pointer-gestures:16 Icon=/usr/share/icons/Papirus-Dark/64x64@2x/apps/libinput-gestures.svg Name=Xinput-Disable-XWayland-Gestures Comment=Fix Wine Crash on Gesture Use X-GNOME-Autostart-enabled=true ```
Edit the `Exec=...` line according your own output of `xinput list --name-only | grep ^xwayland-pointer-gestures`