diff --git a/src/plugins/qmlinspector/qmlinspectorplugin.cpp b/src/plugins/qmlinspector/qmlinspectorplugin.cpp index 8eb3b18a497..0ed82c77135 100644 --- a/src/plugins/qmlinspector/qmlinspectorplugin.cpp +++ b/src/plugins/qmlinspector/qmlinspectorplugin.cpp @@ -147,8 +147,8 @@ void QmlInspectorPlugin::activateDebuggerForProject(ProjectExplorer::Project *pr if (runMode == ProjectExplorer::Constants::DEBUGMODE) { // FIXME we probably want to activate the debugger for other projects than QmlProjects, // if they contain Qml files. Some kind of options should exist for this behavior. - //QmlProjectManager::QmlProject *qmlproj = qobject_cast(project); - //if (qmlproj) + QmlProjectManager::QmlProject *qmlproj = qobject_cast(project); + if (qmlproj) m_connectionTimer->start(); }