[Bug 29871] drawing in photoshop cs5 is almost impossible

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Jun 11 18:17:04 CDT 2015


https://bugs.winehq.org/show_bug.cgi?id=29871

--- Comment #48 from artik <jeff.artik at 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).

-- 
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.



More information about the wine-bugs mailing list