Skip to content

Commit

Permalink
[ui] Edge: Removed Qt.binding on curveScale
Browse files Browse the repository at this point in the history
  • Loading branch information
waaake committed Jan 23, 2025
1 parent 3a0d167 commit 49ceb6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshroom/ui/qml/GraphEditor/Edge.qml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Item {
/* The curve scale must be set only once the component has been fully created, so
* that all the events following the update of the curve scale can be taken into
* account. */
curveScale = Qt.binding(() => cubic.ctrlPtDist / root.width) // Normalize by width
curveScale = cubic.ctrlPtDist / root.width // Normalize by width
}
}
}

0 comments on commit 49ceb6e

Please sign in to comment.