We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents feedad4 + 0dca19f commit df4ad22Copy full SHA for df4ad22
meshroom/ui/qml/GraphEditor/Edge.qml
@@ -148,8 +148,8 @@ Item {
148
Component.onCompleted: {
149
/* The curve scale must be set only once the component has been fully created, so
150
* that all the events following the update of the curve scale can be taken into
151
- * account */
152
- curveScale = cubic.ctrlPtDist / root.width // Normalize by width
+ * account. */
+ curveScale = Qt.binding(() => cubic.ctrlPtDist / root.width) // Normalize by width
153
}
154
155
0 commit comments