summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2020-06-25 12:10:55 +0200
committerTim Jenssen <tim.jenssen@qt.io>2020-06-26 08:19:03 +0000
commita8ac06a852d105f0fff29379fbfb201c156df396 (patch)
tree59ba89614a8f4566aa895ea6d6c7a28add6ff88d
parent003282c6f5ed89de4bc5a2ddeffdea59286b455f (diff)
downloadqt-creator-a8ac06a852d105f0fff29379fbfb201c156df396.tar.gz
qmldesigner: reduce noise
removes unnecessary: "PropertyEditor: invalid node for setup" while reseting the view. Change-Id: Ib4583e97ed5a52ff87116e4231f4bf6b4f4cc7e5 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp
index 5307bf522b..61c40b9560 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp
@@ -470,8 +470,8 @@ void PropertyEditorView::setupQmlBackend()
if (m_selectedNode.isValid()) {
qmlObjectNode = QmlObjectNode(m_selectedNode);
Q_ASSERT(qmlObjectNode.isValid());
+ currentQmlBackend->setup(qmlObjectNode, currentStateName, qmlSpecificsFile, this);
}
- currentQmlBackend->setup(qmlObjectNode, currentStateName, qmlSpecificsFile, this);
currentQmlBackend->context()->setContextProperty("finishedNotify", QVariant(false));
if (specificQmlData.isEmpty())
currentQmlBackend->contextObject()->setSpecificQmlData(specificQmlData);