Browse Source

Merge pull request #96620 from ajreckof/fix-clear-button-on-Array-Node]

Fix clear button on `Array[Node]`.
Rémi Verschelde 1 year ago
parent
commit
a0823ce5fe
1 changed files with 5 additions and 1 deletions
  1. 5 1
      editor/editor_properties.cpp

+ 5 - 1
editor/editor_properties.cpp

@@ -2703,7 +2703,11 @@ void EditorPropertyNodePath::_update_menu() {
 void EditorPropertyNodePath::_menu_option(int p_idx) {
 	switch (p_idx) {
 		case ACTION_CLEAR: {
-			emit_changed(get_edited_property(), NodePath());
+			if (editing_node) {
+				emit_changed(get_edited_property(), Variant());
+			} else {
+				emit_changed(get_edited_property(), NodePath());
+			}
 			update_property();
 		} break;