forked from qt-creator/qt-creator
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:
@@ -345,7 +345,8 @@ inline static bool isValueType(const TypeName &type)
|
||||
"vector3d",
|
||||
"vector4d",
|
||||
"font",
|
||||
"QQuickIcon"});
|
||||
"QQuickIcon"
|
||||
"QEasingCurve"});
|
||||
return objectValuesList.contains(type);
|
||||
}
|
||||
|
||||
@@ -365,7 +366,8 @@ inline static bool isValueType(const QString &type)
|
||||
"vector3d",
|
||||
"vector4d",
|
||||
"font",
|
||||
"QQuickIcon"});
|
||||
"QQuickIcon",
|
||||
"QEasingCurve"});
|
||||
return objectValuesList.contains(type);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user