mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Add nullptr check when restoring state with overlayed widgets
This commit is contained in:
parent
84c6afa428
commit
dc05ec3acf
@ -427,7 +427,14 @@ void CDockAreaTitleBar::onTabsMenuActionTriggered(QAction* Action)
|
||||
//============================================================================
|
||||
void CDockAreaTitleBar::updateDockWidgetActionsButtons()
|
||||
{
|
||||
CDockWidget* DockWidget = d->TabBar->currentTab()->dockWidget();
|
||||
auto* const currentTab = d->TabBar->currentTab();
|
||||
if (currentTab == nullptr)
|
||||
{
|
||||
// It's possible for this to be nullptr when restoring state
|
||||
return;
|
||||
}
|
||||
|
||||
CDockWidget* DockWidget = currentTab->dockWidget();
|
||||
if (!d->DockWidgetActionsButtons.isEmpty())
|
||||
{
|
||||
for (auto Button : d->DockWidgetActionsButtons)
|
||||
|
Loading…
Reference in New Issue
Block a user