From dad1c8cb4b0c36ec7ae4c3c93018ca60fd186dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lund=20Martsum?= Date: Fri, 1 Dec 2023 13:04:44 +0100 Subject: [PATCH] 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. --- src/DockWidget.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/DockWidget.cpp b/src/DockWidget.cpp index 4298af6..01a21a5 100644 --- a/src/DockWidget.cpp +++ b/src/DockWidget.cpp @@ -749,11 +749,10 @@ void CDockWidget::toggleViewInternal(bool Open) if (d->DockArea) { d->DockArea->toggleDockWidgetView(this, Open); - } - - if (d->DockArea->isAutoHide()) - { - d->DockArea->autoHideDockContainer()->toggleView(Open); + if (d->DockArea->isAutoHide()) + { + d->DockArea->autoHideDockContainer()->toggleView(Open); + } } if (Open && TopLevelDockWidgetBefore)