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.

Pick-to: qds/4.7
Change-Id: I8c6e30560a7f7b8135f1decee4065c99e43d87fc
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Thomas Hartmann
2025-05-14 13:48:15 +02:00
parent 9202a1d228
commit 30db773402

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);
} }