1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Merge branch 'master' into add_dock_order_preference

This commit is contained in:
Syarif Fakhri 2023-06-20 12:52:44 +08:00
commit 577005688f
4 changed files with 14 additions and 2 deletions

View File

@ -256,7 +256,7 @@ The PySide6 bindings were contributed by:
- [mborgerson](https://github.com/mborgerson) - [mborgerson](https://github.com/mborgerson)
For more information about the PySide6 bindings read [this](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/issues/298) issue. Please file PySide6-QtAds-specific issues on its [pyside6_qtads](https://github.com/mborgerson/pyside6_qtads) fork for tracking. For more information about the PySide6 bindings read [this](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/issues/298) issue.
### PyQt5 ### PyQt5

View File

@ -36,6 +36,7 @@
#include <QBoxLayout> #include <QBoxLayout>
#include <QApplication> #include <QApplication>
#include <QtGlobal> #include <QtGlobal>
#include <QTimer>
#include "FloatingDockContainer.h" #include "FloatingDockContainer.h"
#include "DockAreaWidget.h" #include "DockAreaWidget.h"
@ -107,7 +108,12 @@ void DockAreaTabBarPrivate::updateTabs()
{ {
TabWidget->show(); TabWidget->show();
TabWidget->setActiveTab(true); TabWidget->setActiveTab(true);
_this->ensureWidgetVisible(TabWidget); // Sometimes the synchronous calculation of the rectangular area fails
// Therefore we use QTimer::singleShot here to execute the call
// within the event loop - see #520
QTimer::singleShot(0, [&, TabWidget]{
_this->ensureWidgetVisible(TabWidget);
});
} }
else else
{ {

View File

@ -140,6 +140,7 @@ public:
{ {
LayoutItem->widget()->setParent(nullptr); LayoutItem->widget()->setParent(nullptr);
} }
delete LayoutItem;
m_CurrentWidget = nullptr; m_CurrentWidget = nullptr;
m_CurrentIndex = -1; m_CurrentIndex = -1;
} }

View File

@ -1133,6 +1133,11 @@ void CFloatingDockContainer::hideAndDeleteLater()
d->AutoHideChildren = false; d->AutoHideChildren = false;
hide(); hide();
deleteLater(); deleteLater();
if (d->DockManager)
{
d->DockManager->removeFloatingWidget(this);
d->DockManager->removeDockContainer(this->dockContainer());
}
} }
//============================================================================ //============================================================================