]> git.saurik.com Git - wxWidgets.git/commitdiff
Set focus to generic wxDataViewCtrl when clicking with any mouse button, not just...
authorRobert Roebling <robert@roebling.de>
Sat, 23 Oct 2010 14:00:15 +0000 (14:00 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 23 Oct 2010 14:00:15 +0000 (14:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65872 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/datavgen.cpp

index 63a7ed68cf8e4b5fc6bb6bbb1e687cb89ef591ca..874a32f2d19a9f8545803eef209dcb89d1d02d2d 100644 (file)
@@ -3442,6 +3442,10 @@ void wxDataViewMainWindow::OnMouse( wxMouseEvent &event )
         return;
     }
 
+    // set the focus to ourself if any of the mouse buttons are pressed
+    if(event.ButtonDown() && !HasFocus())
+        SetFocus();
+
     int x = event.GetX();
     int y = event.GetY();
     m_owner->CalcUnscrolledPosition( x, y, &x, &y );
@@ -3711,8 +3715,6 @@ void wxDataViewMainWindow::OnMouse( wxMouseEvent &event )
     }
     else if ((event.LeftDown() || simulateClick) && !hoverOverExpander)
     {
-        SetFocus();
-
         m_lineBeforeLastClicked = m_lineLastClicked;
         m_lineLastClicked = current;