https://bugs.winehq.org/show_bug.cgi?id=29871
--- Comment #48 from artik jeff.artik@gmail.com --- When Sebastian Lackner tried to fix this bug, the patch was no longer working. To get brushes working again, open /dlls/user32/input.c
Find and replace :
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)
By :
/* 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; } */ if (!key_state_info)
(Sorry, don't know how to create a patch).