diff --git a/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp b/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp index 8c3c752a3ed7cdfa50f2d92da1c8cd768ef61adc..129eab13b81ed0dfaf10570a60075686900808c6 100644 --- a/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp +++ b/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp @@ -421,7 +421,8 @@ void DesignDocumentController::loadCurrentModel() m_d->stackedWidget->addWidget(m_d->formEditorView->widget()); ComponentAction *componentAction = new ComponentAction(m_d->formEditorView->widget()); componentAction->setModel(m_d->model.data()); - m_d->formEditorView->widget()->lowerToolBox()->addAction(componentAction); + // TODO: Enable again + //m_d->formEditorView->widget()->lowerToolBox()->addAction(componentAction); connect(componentAction, SIGNAL(currentComponentChanged(ModelNode)), SLOT(changeCurrentModelTo(ModelNode))); //TODO component action connect(m_d->itemLibrary.data(), SIGNAL(itemActivated(const QString&)), m_d->formEditorView.data(), SLOT(activateItemCreator(const QString&))); }