diff --git a/src/libs/qmljs/qmljscheck.cpp b/src/libs/qmljs/qmljscheck.cpp index 8d5bcadad57..9d30907cfab 100644 --- a/src/libs/qmljs/qmljscheck.cpp +++ b/src/libs/qmljs/qmljscheck.cpp @@ -2023,6 +2023,10 @@ const Value *Check::checkScopeObjectMember(const UiQualifiedId *id) while (idPart->next) { const ObjectValue *objectValue = value_cast(value); if (! objectValue) { + + if (!objectValue && propertyName == "easing") + return nullptr; + addMessage(ErrDoesNotHaveMembers, idPart->identifierToken, propertyName); return nullptr; }