http://bugs.winehq.org/show_bug.cgi?id=59010 --- Comment #2 from Gevorg <qamalyan86(a)gmail.com> --- Still exists. The problematic behavior occurs in this code path: handle_sys_command() case SC_MINIMIZE: show_owned_popups(hwnd, FALSE); NtUserShowWindow(hwnd, SW_MINIMIZE); break; Step by step explanation: show_owned_popups(hwnd, FALSE) hides any non-modal owned dialogs and tries to activate another window. This activation ends up re-activating the main window. Immediately after, NtUserShowWindow(hwnd, SW_MINIMIZE) is called, but due to the previous activation, the main window triggers an internal SW_RESTORE command. As a result, the main window minimizes but immediately restores itself. This issue does not happen if _NET_ACTIVE_WINDOW support is disabled, indicating that the interaction between show_owned_popups() and the window manager’s active window handling is the root cause. It can be reproduced consistently in Notepad with a non-modal Find dialog. -- 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.