Skip to content
Snippets Groups Projects
Commit 02eba4fb authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.toolbar: avoid issues during setup

parent 2a90e47c
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,8 @@ void QmlContextPane::apply(TextEditor::BaseTextEditorEditable *editor, Document:
if (update && editor != m_editor)
return; //do not update for different editor
m_blockWriting = true;
LookupContext::Ptr lookupContext = LookupContext::create(doc, snapshot, QList<Node*>());
const Interpreter::ObjectValue *scopeObject = doc->bind()->findQmlObject(node);
......@@ -148,11 +150,8 @@ void QmlContextPane::apply(TextEditor::BaseTextEditorEditable *editor, Document:
contextWidget()->activate(p3 , p1, p2);
else
contextWidget()->rePosition(p3 , p1, p2);
m_blockWriting = true;
contextWidget()->setPath(doc->path());
contextWidget()->setProperties(&propertyReader);
m_blockWriting = false;
contextWidget()->setProperties(&propertyReader);
m_doc = doc;
m_node = node;
} else {
......@@ -166,6 +165,8 @@ void QmlContextPane::apply(TextEditor::BaseTextEditorEditable *editor, Document:
contextWidget()->colorDialog()->hide();
}
m_blockWriting = false;
}
void QmlContextPane::setProperty(const QString &propertyName, const QVariant &value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment