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

fix crash if autoHideDockContainer is not available

1) Application Open with one Dock autohidden
2) Another dock gets closed and the hidden dock gets visible, because not enough docks are visible and centerwidget is disabled (CAutoHideDockContainer::moveContentsToParent())
3) During restore where the dock is autohidden shall be hidden again the application crashes
This commit is contained in:
Martin Marmsoler 2023-12-09 19:25:27 +01:00
parent 44ff9e9956
commit 1745dc959b

View File

@ -1176,10 +1176,9 @@ bool DockContainerWidgetPrivate::restoreSideBar(CDockingStateReader& s,
}
auto SideBar = _this->autoHideSideBar(Area);
CAutoHideDockContainer* AutoHideContainer;
if (DockWidget->isAutoHide())
CAutoHideDockContainer* AutoHideContainer = DockWidget->autoHideDockContainer();
if (DockWidget->isAutoHide() && AutoHideContainer)
{
AutoHideContainer = DockWidget->autoHideDockContainer();
if (AutoHideContainer->autoHideSideBar() != SideBar)
{
SideBar->addAutoHideWidget(AutoHideContainer);