aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/animation/easing/easing.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/animation/easing/easing.qml')
-rw-r--r--examples/quick/animation/easing/easing.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/animation/easing/easing.qml b/examples/quick/animation/easing/easing.qml
index f443486141..44c078b9a2 100644
--- a/examples/quick/animation/easing/easing.qml
+++ b/examples/quick/animation/easing/easing.qml
@@ -102,7 +102,7 @@ Rectangle {
ListElement { name: "Easing.InBounce"; type: Easing.InBounce; ballColor: "DimGray" }
ListElement { name: "Easing.InOutBounce"; type: Easing.InOutBounce; ballColor: "SlateGray" }
ListElement { name: "Easing.OutInBounce"; type: Easing.OutInBounce; ballColor: "DarkSlateGray" }
- ListElement { name: "Easing.Bezier"; type: Easing.Bezier; ballColor: "Chartreuse"; }
+ ListElement { name: "Easing.BezierSpline"; type: Easing.BezierSpline; ballColor: "Chartreuse"; }
}
Component {
@@ -180,7 +180,7 @@ Rectangle {
function getBezierCurve(name)
{
- if (name === "Easing.Bezier")
+ if (name === "Easing.BezierSpline")
return easingCurve;
return [];
}