forked from qt-creator/qt-creator
AutoTest: Fix debugging of QuickTests
Fixes: QTCREATORBUG-23709 Change-Id: Ib728fe0c4ec4eb99759fcc324e987e3866be42f6 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -57,10 +57,9 @@ public:
|
||||
if (auto debuggable = dynamic_cast<DebuggableTestConfiguration *>(config))
|
||||
enableQuick = debuggable->mixedDebugging();
|
||||
|
||||
if (auto debugAspect = aspect<Debugger::DebuggerRunConfigurationAspect>()) {
|
||||
debugAspect->setUseQmlDebugger(enableQuick);
|
||||
ProjectExplorer::ProjectExplorerPlugin::instance()->updateRunActions();
|
||||
}
|
||||
auto debugAspect = addAspect<Debugger::DebuggerRunConfigurationAspect>(parent);
|
||||
debugAspect->setUseQmlDebugger(enableQuick);
|
||||
ProjectExplorer::ProjectExplorerPlugin::instance()->updateRunActions();
|
||||
m_testConfig = config;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user