https://bugs.winehq.org/show_bug.cgi?id=57909 Attila Fidan <winebugs(a)print0.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |winebugs(a)print0.net --- Comment #2 from Attila Fidan <winebugs(a)print0.net> ---
cursor flickers instead of being held
Is this maybe a key repeat issue causing the interact key to be repeatedly pressed/released? Without doing any pointer motion, does holding the interact key flicker the cursor, and only after the configured (from the compositor) repeat delay amount of milliseconds has elapsed? If you change `delay = max(0, min(3, round(delay / 250.0) - 1));` in wayland_keyboard.c:keyboard_handle_repeat_info to `delay = max(0, min(999, round(delay / 250.0) - 1));` so that the repeat delay is allowed to become very large, and configure your desktop's repeat delay to be several thousand milliseconds, does it then take that amount of time after holding the interact key before the cursor flickers? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.