QmlDesigner: Add QEasingCurve to value types

Without this the dot properties belonging to
QEasingCurve are not known and e.g. easing.bezierCurve
is unknown/ignored.

Change-Id: I8c6e30560a7f7b8135f1decee4065c99e43d87fc
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
(cherry picked from commit 30db773402)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Thomas Hartmann
2025-05-14 13:48:15 +02:00
parent 8777d484a4
commit fe6bbb6303

View File

@@ -345,7 +345,8 @@ inline static bool isValueType(const TypeName &type)
"vector3d", "vector3d",
"vector4d", "vector4d",
"font", "font",
"QQuickIcon"}); "QQuickIcon"
"QEasingCurve"});
return objectValuesList.contains(type); return objectValuesList.contains(type);
} }
@@ -365,7 +366,8 @@ inline static bool isValueType(const QString &type)
"vector3d", "vector3d",
"vector4d", "vector4d",
"font", "font",
"QQuickIcon"}); "QQuickIcon",
"QEasingCurve"});
return objectValuesList.contains(type); return objectValuesList.contains(type);
} }