Merge pull request #92225 from ajreckof/fix-multiline-array
Fix array variable with `@export_multiline` not registering changes.
This commit is contained in:
@ -235,6 +235,9 @@ void EditorPropertyArray::_property_changed(const String &p_property, Variant p_
|
|||||||
Variant array = object->get_array().duplicate();
|
Variant array = object->get_array().duplicate();
|
||||||
array.set(index, p_value);
|
array.set(index, p_value);
|
||||||
emit_changed(get_edited_property(), array, p_name, p_changing);
|
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) {
|
void EditorPropertyArray::_change_type(Object *p_button, int p_slot_index) {
|
||||||
|
|||||||
Reference in New Issue
Block a user