diff --git a/src/plugins/debugger/debuggermainwindow.cpp b/src/plugins/debugger/debuggermainwindow.cpp index e34656aac0a..6952568d7fb 100644 --- a/src/plugins/debugger/debuggermainwindow.cpp +++ b/src/plugins/debugger/debuggermainwindow.cpp @@ -525,6 +525,8 @@ void DebuggerMainWindowPrivate::populateCurrentPerspective() // Create dock widgets wrapping ther perspective's widgets. QHash dockForDockId; for (const DockOperation &op : m_currentPerspective->d->m_dockOperations) { + if (op.operationType == Perspective::Raise) + continue; QTC_ASSERT(op.widget, continue); const QString dockId = op.widget->objectName(); QTC_CHECK(!dockId.isEmpty());