mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fix DockWidget crach when area is a nullptr.
When requesting hide on a dockwidget that has been added to a dockmanager, but isn't yet visible, there was a creash. The crash has been fixed by moving the code to the existing guard check for the area.
This commit is contained in:
parent
59b4dfb89c
commit
dad1c8cb4b
@ -749,11 +749,10 @@ void CDockWidget::toggleViewInternal(bool Open)
|
|||||||
if (d->DockArea)
|
if (d->DockArea)
|
||||||
{
|
{
|
||||||
d->DockArea->toggleDockWidgetView(this, Open);
|
d->DockArea->toggleDockWidgetView(this, Open);
|
||||||
}
|
if (d->DockArea->isAutoHide())
|
||||||
|
{
|
||||||
if (d->DockArea->isAutoHide())
|
d->DockArea->autoHideDockContainer()->toggleView(Open);
|
||||||
{
|
}
|
||||||
d->DockArea->autoHideDockContainer()->toggleView(Open);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Open && TopLevelDockWidgetBefore)
|
if (Open && TopLevelDockWidgetBefore)
|
||||||
|
Loading…
Reference in New Issue
Block a user