mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[WIN32SS][NTUSER] Don't freeze Task Bar in switching the app (#1243)
This avoids taskbar hung up.
This commit is contained in:
parent
5f11c16ca8
commit
8ca854251a
1 changed files with 5 additions and 0 deletions
|
@ -515,6 +515,11 @@ NtUserCallTwoParam(
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (MsqIsHung(Window->head.pti))
|
||||||
|
{
|
||||||
|
// TODO: Make the window ghosted and activate.
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (fAltTab)
|
if (fAltTab)
|
||||||
{
|
{
|
||||||
if (Window->style & WS_MINIMIZE)
|
if (Window->style & WS_MINIMIZE)
|
||||||
|
|
Loading…
Reference in a new issue