[DESK] Fix a freeze caused by changing screensaver settings. By Peter Hater. CORE-5718

svn path=/trunk/; revision=66679
This commit is contained in:
Amine Khaldi 2015-03-14 10:10:06 +00:00
parent a7516a6c98
commit 0524088717

View file

@ -175,10 +175,18 @@ WaitForSettingsDialog(HWND hwndDlg,
DispatchMessage(&msg);
}
}
else
{
return FALSE;
}
}
else if (dwResult == WAIT_OBJECT_0)
{
return TRUE;
}
else
{
return TRUE;
return FALSE;
}
}
}