diff --git a/src/AutoHideDockContainer.cpp b/src/AutoHideDockContainer.cpp index ce28688..2cb2f34 100644 --- a/src/AutoHideDockContainer.cpp +++ b/src/AutoHideDockContainer.cpp @@ -167,8 +167,14 @@ AutoHideDockContainerPrivate::AutoHideDockContainerPrivate( //============================================================================ CDockContainerWidget* CAutoHideDockContainer::parentContainer() const { - // Don't rely on the dock area parent container, when dragging or floating the parent container can change - return internal::findParent(this); + if (d->DockArea) + { + return d->DockArea->dockContainer(); + } + else + { + return internal::findParent(this); + } } @@ -355,7 +361,7 @@ void CAutoHideDockContainer::moveContentsToParent() //============================================================================ -void CAutoHideDockContainer::cleanupAndDelete(bool deleteDockArea) +void CAutoHideDockContainer::cleanupAndDelete() { const auto dockWidget = d->DockWidget; if (dockWidget) @@ -369,15 +375,6 @@ void CAutoHideDockContainer::cleanupAndDelete(bool deleteDockArea) hide(); deleteLater(); - - // Schedule deletion of the dock area after the auto hide widget - // Otherwise, there are issues with the windows native event handler - if (deleteDockArea) - { - d->DockArea->setParent(nullptr); - d->DockArea->deleteLater(); - d->DockArea = nullptr; - } } diff --git a/src/AutoHideDockContainer.h b/src/AutoHideDockContainer.h index dbd78f8..c00f114 100644 --- a/src/AutoHideDockContainer.h +++ b/src/AutoHideDockContainer.h @@ -134,10 +134,8 @@ public: /** * Cleanups up the side tab widget and then deletes itself - * deleteDockArea = true is set, this will also delete the dockArea. - * Avoid deleting the dock area floating drag, where the dock area is simply moved into another container */ - void cleanupAndDelete(bool deleteDockArea = true); + void cleanupAndDelete(); /* * Toggles the auto Hide dock container widget diff --git a/src/DockContainerWidget.cpp b/src/DockContainerWidget.cpp index 648c9e8..a90f990 100644 --- a/src/DockContainerWidget.cpp +++ b/src/DockContainerWidget.cpp @@ -1957,16 +1957,12 @@ void CDockContainerWidget::registerAutoHideWidget(CAutoHideDockContainer* Autohi d->AutoHideWidgets.append(AutohideWidget); Q_EMIT autoHideWidgetCreated(AutohideWidget); ADS_PRINT("d->AutoHideWidgets.count() " << d->AutoHideWidgets.count()); - qInfo()<< this << "Size after registering: " << d->AutoHideWidgets.size(); } //============================================================================ void CDockContainerWidget::removeAutoHideWidget(CAutoHideDockContainer* AutohideWidget) { - qInfo() << this << "Auto hide widgets: " << d->AutoHideWidgets; - qInfo() << "Size before removing: " << d->AutoHideWidgets.size(); d->AutoHideWidgets.removeAll(AutohideWidget); - qInfo() << "Size after removing: " << d->AutoHideWidgets.size(); } //============================================================================ diff --git a/src/FloatingDragPreview.cpp b/src/FloatingDragPreview.cpp index 24be3ea..a48611d 100644 --- a/src/FloatingDragPreview.cpp +++ b/src/FloatingDragPreview.cpp @@ -371,11 +371,11 @@ void CFloatingDragPreview::cleanupAutoHideContainerWidget() auto DroppedArea = qobject_cast(d->Content); if (DroppedDockWidget && DroppedDockWidget->autoHideDockContainer()) { - DroppedDockWidget->autoHideDockContainer()->cleanupAndDelete(false); + DroppedDockWidget->autoHideDockContainer()->cleanupAndDelete(); } if (DroppedArea && DroppedArea->autoHideDockContainer()) { - DroppedArea->autoHideDockContainer()->cleanupAndDelete(false); + DroppedArea->autoHideDockContainer()->cleanupAndDelete(); } }