]> git.saurik.com Git - wxWidgets.git/commitdiff
changed to behave in same way as native win32 control and generic wxListCtrl when...
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 23 Jul 2004 16:45:28 +0000 (16:45 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 23 Jul 2004 16:45:28 +0000 (16:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28426 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/treectlg.cpp

index 4f7bb21448acad726a9b25367e3380767d483950..69094f0757b5d7beb736019e2fb5df91d659a0a0 100644 (file)
@@ -448,16 +448,17 @@ void wxTreeTextCtrl::OnKeyUp( wxKeyEvent &event )
 
 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent &event )
 {
-    if ( m_finished )
-    {
-        event.Skip();
-        return;
-    }
-
-    if ( AcceptChanges() )
+    if ( !m_finished )
     {
+        AcceptChanges();
+        // We must finish regardless of success, otherwise we'll get
+        // focus problems:
         Finish();
     }
+
+    // We must let the native text control handle focus, too, otherwise
+    // it could have problems with the cursor (e.g., in wxGTK):
+    event.Skip();
 }
 
 // -----------------------------------------------------------------------------