1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0024136: Mouse move events from inactive Draw Harness window should not be processed on active window

This commit is contained in:
kgv 2013-08-29 21:22:00 +04:00 committed by bugmaster
parent e9b037efd2
commit 08398024d0

View File

@ -1974,7 +1974,8 @@ static LRESULT WINAPI ViewerWindowProc( HWND hwnd,
}
}
#endif
else
else if (GetWindowHandle (VT_GetWindow()) == hwnd)
{
if ((fwKeys & MK_MBUTTON
|| ((fwKeys & MK_LBUTTON) && (fwKeys & MK_RBUTTON))))
{
@ -1984,6 +1985,7 @@ static LRESULT WINAPI ViewerWindowProc( HWND hwnd,
{
VT_ProcessMotion();
}
}
}
break;
@ -2186,6 +2188,10 @@ int ViewerMainLoop(Standard_Integer argc, const char** argv)
break;
case MotionNotify:
{
if (GetWindowHandle (VT_GetWindow()) != aReport.xmotion.window)
{
break;
}
if( IsDragged )
{
Aspect_Handle aWindow = VT_GetWindow()->XWindow();