diff options
Diffstat (limited to 'core/script_language.cpp')
-rw-r--r-- | core/script_language.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/script_language.cpp b/core/script_language.cpp index 031fcb0c4c..ad93fca4b5 100644 --- a/core/script_language.cpp +++ b/core/script_language.cpp @@ -283,8 +283,10 @@ void PlaceHolderScriptInstance::update(const List<PropertyInfo> &p_properties,co to_remove.pop_front(); } - if (owner && owner->get_script_instance()==this) + if (owner && owner->get_script_instance()==this) { + owner->_change_notify(); + } //change notify } |