diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp index 780343f9a0437db260f7e05c57d4ae045bf6c773..f92426dac547bdf84a9347f1a427ed0c69ae6921 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp @@ -290,11 +290,14 @@ void PropertyEditor::anyPropertyChanged(const QmlObjectNode &fxObjectNode) void PropertyEditor::otherPropertyChanged(const QmlObjectNode &fxObjectNode) { + QmlModelView::transformChanged(fxObjectNode); anyPropertyChanged(fxObjectNode); } void PropertyEditor::transformChanged(const QmlObjectNode &fxObjectNode) { + QmlModelView::transformChanged(fxObjectNode); + anyPropertyChanged(fxObjectNode); }