Bug fix for MyAvatar.getEyeHeight()

This commit is contained in:
Anthony J. Thibault 2017-11-15 11:27:42 -08:00
parent 2c51e516eb
commit b49891c0f8

View file

@ -1579,7 +1579,7 @@ float Avatar::getEyeHeight() const {
if (QThread::currentThread() != thread()) {
float result = DEFAULT_AVATAR_EYE_HEIGHT;
BLOCKING_INVOKE_METHOD(const_cast<Avatar*>(this), "getHeight", Q_RETURN_ARG(float, result));
BLOCKING_INVOKE_METHOD(const_cast<Avatar*>(this), "getEyeHeight", Q_RETURN_ARG(float, result));
return result;
}