diff --git a/include/openspace/properties/numericalproperty.inl b/include/openspace/properties/numericalproperty.inl index 233688320a..30ee9ea0d3 100644 --- a/include/openspace/properties/numericalproperty.inl +++ b/include/openspace/properties/numericalproperty.inl @@ -183,7 +183,7 @@ bool NumericalProperty::setLua(lua_State* state) bool success; T value = PropertyDelegate>::template fromLuaValue(state, success); if (success) - setValue(value); + TemplateProperty::setValue(value); return success; }