diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-05-29 23:11:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 23:11:57 +0200 |
commit | 25519867f249961f7c2a7d6aa6772cb39377e85c (patch) | |
tree | bb6d474972c6d09b454c052965a1d0147bf18d25 /editor | |
parent | a6ef250f3eada5ba1f9cc3c06663b9f76c7c2279 (diff) | |
parent | 0e8abb51320db62408022ba171518156d1d749f6 (diff) | |
download | redot-engine-25519867f249961f7c2a7d6aa6772cb39377e85c.tar.gz |
Merge pull request #92225 from ajreckof/fix-multiline-array
Fix array variable with `@export_multiline` not registering changes.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_properties_array_dict.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_properties_array_dict.cpp b/editor/editor_properties_array_dict.cpp index b4fc47323a..b5f34ecb3d 100644 --- a/editor/editor_properties_array_dict.cpp +++ b/editor/editor_properties_array_dict.cpp @@ -235,6 +235,9 @@ void EditorPropertyArray::_property_changed(const String &p_property, Variant p_ Variant array = object->get_array().duplicate(); array.set(index, p_value); emit_changed(get_edited_property(), array, p_name, p_changing); + if (p_changing) { + object->set_array(array); + } } void EditorPropertyArray::_change_type(Object *p_button, int p_slot_index) { |