Fix the C++ property

This commit is contained in:
Olivier Goffart 2020-05-28 15:25:33 +02:00
parent b8a8abcdf9
commit 9891779022

View file

@ -18,7 +18,10 @@ struct Property
set(value);
}*/
void set(const T &value) const { this->value = value; }
void set(const T &value) const {
this->value = value;
internal::sixtyfps_property_set_changed(&inner);
}
const T &get(const internal::EvaluationContext *context) const
{