From: Vadim Zeitlin Date: Wed, 20 Feb 2002 01:39:20 +0000 (+0000) Subject: *do* generate the LEAVE events even when the mouse is captured X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ee74faf934cedf222f52d7a785225ff45121472d *do* generate the LEAVE events even when the mouse is captured git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14319 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 44fb41d769..3f8bd5c12b 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -1273,7 +1273,9 @@ void wxWindowMSW::OnIdle(wxIdleEvent& WXUNUSED(event)) // Check if we need to send a LEAVE event if ( m_mouseInWindow ) { - if ( !IsMouseInWindow() && !HasCapture()) + // note that we should generate the leave event whether the window has + // or doesn't have mouse capture + if ( !IsMouseInWindow() ) { // Generate a LEAVE event m_mouseInWindow = FALSE;