https://bugs.winehq.org/show_bug.cgi?id=29871
--- Comment #60 from artik jeff.artik@gmail.com --- (In reply to Chituc Georgian from comment #59)
Open /dlls/user32/input.c
Find :
if (key_state_info && !(key_state_info->state[key] & 0xc0) && key_state_info->counter == counter && GetTickCount() - key_state_info->time < 50) { /* use cached value */ return 0; } else if (!key_state_info)
and put a lower value than 50 for the line: GetTickCount() - key_state_info->time < 50) I put 10 so for me all is fine. Looks like this :
if (key_state_info && !(key_state_info->state[key] & 0xc0) && key_state_info->counter == counter && GetTickCount() - key_state_info->time < 10) { /* use cached value */ return 0; } else if (!key_state_info)
I tested in debug mode and he is using the cached value too and all is working good for me.
I tried, doesn't work for me, brush still dotted (lastest 1.9.19 git version). Only https://bugs.winehq.org/show_bug.cgi?id=29871#c48 works for me.