[ui] Edge: Removed Qt.binding on curveScale

This commit is contained in:
waaake 2025-01-23 10:42:28 +05:30
parent 3a0d167bce
commit 49ceb6e78c

View file

@ -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
}
}
}