1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00

0025362: Samples - Conversion to B-Spline doesn't show bspline surface on Windows 8

Added constants WM_MOUSEFIRST and WM_PAINT in WaitForInput method for correct handling of system messages.
This commit is contained in:
ski 2016-11-23 10:24:20 +03:00 committed by apn
parent d96fd48ee5
commit 168077a6dc

View File

@ -39,7 +39,9 @@ Standard_Boolean OCCDemo_Presentation::WaitForInput (unsigned long aMilliSeconds
MSG msg; MSG msg;
if (::PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE)) if (::PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
{ {
if (msg.message == WM_KEYUP) if ( msg.message == WM_KEYUP ||
msg.message == WM_MOUSEFIRST ||
msg.message == WM_PAINT )
{ {
::PeekMessage (&msg, NULL, 0, 0, PM_REMOVE); ::PeekMessage (&msg, NULL, 0, 0, PM_REMOVE);
return WaitForInput (aMilliSeconds); return WaitForInput (aMilliSeconds);