]> git.saurik.com Git - wxWidgets.git/blobdiff - src/aui/framemanager.cpp
Merge in from trunk r64802 - r68625
[wxWidgets.git] / src / aui / framemanager.cpp
index b4b08093c7f783a1b440797a017211e34132949f..bdb37e182c35d1fadec69391a3daf478d1d5a7af 100644 (file)
@@ -4623,6 +4623,15 @@ void wxAuiManager::OnMotion(wxMouseEvent& event)
     {
         if (m_action_window)
         {
+            // We can't move the child window so we need to get the frame that
+            // we want to be really moving. This is probably not the best place
+            // to do this but at least it fixes the bug (#13177) for now.
+            if (!m_action_window->IsKindOf(CLASSINFO(wxAuiFloatingFrame)))
+            {
+                wxAuiPaneInfo& pane = GetPane(m_action_window);
+                m_action_window = pane.frame;
+            }
+
             wxPoint pt = m_frame->ClientToScreen(event.GetPosition());
             m_action_window->Move(pt.x - m_action_offset.x,
                                 pt.y - m_action_offset.y);