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

Fix crash, after restoreState of CDockManager.

This commit is contained in:
Chertkov Alexandr 2022-11-17 16:01:23 +03:00
parent e4a71982d9
commit 2ef7fa727e

View File

@ -390,7 +390,11 @@ void CDockAreaTitleBar::onTabsMenuActionTriggered(QAction* Action)
//============================================================================
void CDockAreaTitleBar::updateDockWidgetActionsButtons()
{
CDockWidget* DockWidget = d->TabBar->currentTab()->dockWidget();
auto Tab = d->TabBar->currentTab();
if (!Tab)
return;
CDockWidget* DockWidget = Tab->dockWidget();
if (!d->DockWidgetActionsButtons.isEmpty())
{
for (auto Button : d->DockWidgetActionsButtons)