]> git.saurik.com Git - wxWidgets.git/commitdiff
In wxComboPopupExtraEventHandler::OnMouseEvent(): Also include wxEVT_LEFT_UP among...
authorJaakko Salli <jaakko.salli@dnainternet.net>
Thu, 27 May 2010 20:03:07 +0000 (20:03 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Thu, 27 May 2010 20:03:07 +0000 (20:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64419 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/combocmn.cpp

index c5304c88501b6cfc4d7c715e4fbb31e24f318b69..ac52ecc81ded2c111bcf38b071657ff520d2a983 100644 (file)
@@ -706,15 +706,15 @@ void wxComboPopupExtraEventHandler::OnMouseEvent( wxMouseEvent& event )
 
     event.Skip();
 
-    if ( evtType == wxEVT_MOTION ||
-         evtType == wxEVT_LEFT_DOWN ||
-         evtType == wxEVT_RIGHT_DOWN )
-    {
-        // Block motion and click events outside the popup
-        if ( !isInside || !m_combo->IsPopupShown() )
-        {
-            event.Skip(false);
-        }
+    // Block motion and click events outside the popup
+    if ( (!isInside || !m_combo->IsPopupShown())
+            &&
+         (evtType == wxEVT_MOTION ||
+          evtType == wxEVT_LEFT_DOWN ||
+          evtType == wxEVT_LEFT_UP ||
+          evtType == wxEVT_RIGHT_DOWN) )
+    {
+        event.Skip(false);
     }
     else if ( evtType == wxEVT_LEFT_UP )
     {