diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index e3514b4691bb..677206c4f698 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -954,6 +954,7 @@ void EditorProperty::menu_option(int p_option) { } break; case MENU_PASTE_VALUE: { emit_changed(property, InspectorDock::get_inspector_singleton()->get_property_clipboard()); + update_property(); } break; case MENU_COPY_PROPERTY_PATH: { DisplayServer::get_singleton()->clipboard_set(property_path); diff --git a/editor/editor_properties_array_dict.cpp b/editor/editor_properties_array_dict.cpp index cd5cafc42f10..3a84fcb7851b 100644 --- a/editor/editor_properties_array_dict.cpp +++ b/editor/editor_properties_array_dict.cpp @@ -208,9 +208,6 @@ 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) { @@ -741,9 +738,6 @@ 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) {