http://bugs.winehq.org/show_bug.cgi?id=59361 --- Comment #9 from Dmitry Timoshkov <dmitry@baikal.ru> --- (In reply to Christian PANEL from comment #8)
Sorry, I'm not a wine developer and don't know how (and where is the source) to compile the dll.
No problem. Just in case, here is a reference to the guide: https://gitlab.winehq.org/wine/wine/-/wikis/Building-Wine
I have not the complete source code,but with these lines, I don't understand : the window must be redrawn even if not MAXIMIZED. SendMessageW( hwndPrev, WM_SETREDRAW, FALSE, 0 ) should redraw based on the state of the window...
I guess you were commenting on the following lines of code: /* restore old MDI child */ SendMessageW( hwndPrev, WM_SETREDRAW, FALSE, 0 ); NtUserShowWindow( hwndPrev, SW_RESTORE ); SendMessageW( hwndPrev, WM_SETREDRAW, TRUE, 0 ); They are supposed to disable redrawing of the being restored window, and after restoring (showing window in normal state) enable redrawing. -- 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.