From: Katayama Hirofumi MZ Date: Tue, 15 Jan 2019 04:45:28 +0000 (+0900) Subject: [WIN32SS][NTUSER] Don't freeze Task Bar in switching the app (#1243) X-Git-Tag: 0.4.13-dev~716 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=8ca854251a89f45a90db8f60f607a477e7e8dbde;hp=5f11c16ca87bdb6528462198a2a5ef284678c7e7 [WIN32SS][NTUSER] Don't freeze Task Bar in switching the app (#1243) This avoids taskbar hung up. --- diff --git a/win32ss/user/ntuser/simplecall.c b/win32ss/user/ntuser/simplecall.c index 67377de4a8c..7cd2c8490d9 100644 --- a/win32ss/user/ntuser/simplecall.c +++ b/win32ss/user/ntuser/simplecall.c @@ -515,6 +515,11 @@ NtUserCallTwoParam( { break; } + if (MsqIsHung(Window->head.pti)) + { + // TODO: Make the window ghosted and activate. + break; + } if (fAltTab) { if (Window->style & WS_MINIMIZE)