aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2021-09-28 17:55:21 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2021-09-30 15:59:58 +0000
commitc026a100a41dc1001587efcb8ac3653bf586b2eb (patch)
tree5f56891535a56c08799a3bddd2608a7cd8b7cf9b
parent502afc754beb50d12d35b2de34cf2c9d1c5f91d4 (diff)
QmlDesigner: Do not mark file as changed for "formeditorColor"qds/v2.2.0
Task-number: QDS-4044 Change-Id: I52a3707edeee8c2204fb67d8101d2a0e99af06ae Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/plugins/qmldesigner/designercore/model/rewriterview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/designercore/model/rewriterview.cpp b/src/plugins/qmldesigner/designercore/model/rewriterview.cpp
index a110750453..5191aac4db 100644
--- a/src/plugins/qmldesigner/designercore/model/rewriterview.cpp
+++ b/src/plugins/qmldesigner/designercore/model/rewriterview.cpp
@@ -448,7 +448,7 @@ void RewriterView::auxiliaryDataChanged(const ModelNode &node, const PropertyNam
return;
if (node.isRootNode()) {
- if (name == "width" || name == "height" || name == "autoSize")
+ if (name == "width" || name == "height" || name == "autoSize" || name == "formeditorColor")
return;
}