mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 14:51:15 +00:00
Fix the C++ property
This commit is contained in:
parent
b8a8abcdf9
commit
9891779022
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue