Merge pull request #76711 from ajreckof/fix-paste-value-not-updating-element-in-dictionaries/array

Fix paste value not updated in dictionaries/arrays
This commit is contained in:
Rémi Verschelde 2023-06-18 16:30:16 +02:00
commit e8e00b981e
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -208,6 +208,9 @@ void EditorPropertyArray::_property_changed(const String &p_property, Variant p_
array.set(index, p_value);
object->set_array(array);
emit_changed(get_edited_property(), array, "", true);
if (!p_changing) {
update_property();
}
}
void EditorPropertyArray::_change_type(Object *p_button, int p_index) {
@ -738,6 +741,9 @@ void EditorPropertyDictionary::_property_changed(const String &p_property, Varia
object->set_dict(dict);
emit_changed(get_edited_property(), dict, "", true);
}
if (!p_changing) {
update_property();
}
}
void EditorPropertyDictionary::_change_type(Object *p_button, int p_index) {