Browse Source

Fixing binding loop problem

QGC4.4
Don Gagne 10 years ago
parent
commit
5dc01461ee
  1. 8
      src/QmlControls/ParameterEditor.qml

8
src/QmlControls/ParameterEditor.qml

@ -210,7 +210,13 @@ Rectangle {
width: parent.width width: parent.width
height: __textHeight + (__screenTools.pixelSizeFactor * (9)) height: __textHeight + (__screenTools.pixelSizeFactor * (9))
Fact { id: modelFact; name: modelData + ":" + componentId } Fact {
id: modelFact
Component.onCompleted: {
name = modelData + ":" + componentId
}
}
QGCLabel { QGCLabel {
id: nameLabel id: nameLabel

Loading…
Cancel
Save