From 5dc01461eeed921282486f197f8eef57ef21a18a Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 28 Apr 2015 18:10:34 -0700 Subject: [PATCH] Fixing binding loop problem --- src/QmlControls/ParameterEditor.qml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/QmlControls/ParameterEditor.qml b/src/QmlControls/ParameterEditor.qml index aa9520f5d..a92ccb67b 100644 --- a/src/QmlControls/ParameterEditor.qml +++ b/src/QmlControls/ParameterEditor.qml @@ -210,7 +210,13 @@ Rectangle { width: parent.width height: __textHeight + (__screenTools.pixelSizeFactor * (9)) - Fact { id: modelFact; name: modelData + ":" + componentId } + Fact { + id: modelFact + + Component.onCompleted: { + name = modelData + ":" + componentId + } + } QGCLabel { id: nameLabel -- 2.22.0