mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 18:48:53 +00:00
[DESK] Fix a freeze caused by changing screensaver settings. By Peter Hater. CORE-5718
svn path=/trunk/; revision=66679
This commit is contained in:
parent
a7516a6c98
commit
0524088717
1 changed files with 9 additions and 1 deletions
|
@ -175,10 +175,18 @@ WaitForSettingsDialog(HWND hwndDlg,
|
||||||
DispatchMessage(&msg);
|
DispatchMessage(&msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (dwResult == WAIT_OBJECT_0)
|
||||||
|
{
|
||||||
|
return TRUE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return TRUE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue