]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/frame.cpp
fix to allow negative coords for wxFrame creation
[wxWidgets.git] / src / msw / frame.cpp
index 857089ffb13ecd3e13ed4c7857c7971441d51fbe..6723824373f2678d3f4deef7d399245ddf04e63e 100644 (file)
@@ -727,18 +727,35 @@ void wxFrame::OnActivate(wxActivateEvent& event)
         // restore focus to the child which was last focused
         wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd);
 
         // restore focus to the child which was last focused
         wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd);
 
-        wxSetFocusToChild(this, &m_winLastFocused);
+        wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent()
+                                            : NULL;
+        if ( !parent )
+        {
+            parent = this;
+        }
+
+        wxSetFocusToChild(parent, &m_winLastFocused);
     }
     }
-    else
+    else // deactivating
     {
     {
-        // remember the last focused child
+        // remember the last focused child if it is our child
         m_winLastFocused = FindFocus();
         m_winLastFocused = FindFocus();
-        while ( m_winLastFocused )
+
+        // so we NULL it out if it's a child from some other frame
+        wxWindow *win = m_winLastFocused;
+        while ( win )
         {
         {
-            if ( GetChildren().Find(m_winLastFocused) )
+            if ( win->IsTopLevel() )
+            {
+                if ( win != this )
+                {
+                    m_winLastFocused = NULL;
+                }
+
                 break;
                 break;
+            }
 
 
-            m_winLastFocused = m_winLastFocused->GetParent();
+            win = win->GetParent();
         }
 
         wxLogTrace(_T("focus"),
         }
 
         wxLogTrace(_T("focus"),