Restore main window if minimized to taskbar. IsWindowVisible is also true when window is minimized. Closes #1207

This commit is contained in:
Ansgar Becker
2020-11-14 17:36:43 +01:00
parent 95713939ca
commit ed7a8cd2c8

View File

@@ -2017,7 +2017,7 @@ begin
// FreeMemory(Dat.lpData);
// Bring first instance to front
if not IsWindowVisible(Wnd) then
if IsIconic(Wnd) then
ShowWindow(Wnd, SW_RESTORE);
BringWindowToTop(Wnd);
SetForegroundWindow(Wnd);