aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/easingcurveeditor/splineeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/easingcurveeditor/splineeditor.cpp b/tools/easingcurveeditor/splineeditor.cpp
index dbd32dd63a..d4408521a8 100644
--- a/tools/easingcurveeditor/splineeditor.cpp
+++ b/tools/easingcurveeditor/splineeditor.cpp
@@ -659,7 +659,7 @@ void SplineEditor::setEasingCurve(const QEasingCurve &easingCurve)
return;
m_block = true;
m_easingCurve = easingCurve;
- m_controlPoints = m_easingCurve.cubicBezierSpline().toVector();
+ m_controlPoints = m_easingCurve.toCubicSpline();
m_numberOfSegments = m_controlPoints.count() / 3;
update();
emit easingCurveChanged();