Commit 4ce100aa authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

user32: Send a fake mouse movement event after releasing capture.

parent 18d7980f
......@@ -195,6 +195,10 @@ BOOL WINAPI ReleaseCapture(void)
SERVER_END_REQ;
if (previous) SendMessageW( previous, WM_CAPTURECHANGED, 0, 0 );
/* Somebody may have missed some mouse movements */
mouse_event( MOUSEEVENTF_MOVE, 0, 0, 0, 0 );
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment