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:
parent
44ff9e9956
commit
1745dc959b
@ -1176,10 +1176,9 @@ bool DockContainerWidgetPrivate::restoreSideBar(CDockingStateReader& s,
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto SideBar = _this->autoHideSideBar(Area);
|
auto SideBar = _this->autoHideSideBar(Area);
|
||||||
CAutoHideDockContainer* AutoHideContainer;
|
CAutoHideDockContainer* AutoHideContainer = DockWidget->autoHideDockContainer();
|
||||||
if (DockWidget->isAutoHide())
|
if (DockWidget->isAutoHide() && AutoHideContainer)
|
||||||
{
|
{
|
||||||
AutoHideContainer = DockWidget->autoHideDockContainer();
|
|
||||||
if (AutoHideContainer->autoHideSideBar() != SideBar)
|
if (AutoHideContainer->autoHideSideBar() != SideBar)
|
||||||
{
|
{
|
||||||
SideBar->addAutoHideWidget(AutoHideContainer);
|
SideBar->addAutoHideWidget(AutoHideContainer);
|
||||||
|
Loading…
Reference in New Issue
Block a user