Solved [Solved] Wine/Photoshop bug

I run Adobe Photoshop using Wine, and I have finally found a solution for a brush bug. Using the brush tool, left clicking the mouse used to just draw a dot even if you keep pressing the mouse.

Code:
#cd /usr/ports/emulators/wine
#make extract
#ee work/wine-1.6.1/dlls/user32/input.c

+	/*
         if (thread_info->key_state &&
             !(thread_info->key_state[key] & 0xc0) &&
             GetTickCount() - thread_info->key_state_time < 50)
             return 0;
+	*/

#make install clean
 
Back
Top