http://bugs.winehq.org/show_bug.cgi?id=5844
Jan de Mooij jandemooij@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jandemooij@gmail.com
--- Comment #22 from Jan de Mooij jandemooij@gmail.com 2008-03-18 14:20:08 --- Ok, I debugged this with taskmgr.exe and uTorrent. When I send SW_MINIMIZE, everything works fine, but from winex11.drv it doesn't. When a minimize event is received we do:
data->lock_changes++; ShowWindow( hwnd, SW_MINIMIZE ); data->lock_changes--;
The lock prevents SW_HIDE (which is done in response to the SW_MINIMIZE) to work. Removing the lock works, but is not the right solution. Alexandre Julliard said on IRC he would have a look at it.