summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorSaracenOne <SaracenOne@gmail.com>2023-04-18 14:05:01 +0200
committerYuri Sizov <yuris@humnom.net>2023-04-18 14:06:17 +0200
commitf1ba23e8bb29a2921ca32f334596213c023555e6 (patch)
treed87f7b534beee6306d3e6e7af825aac924097182 /editor/editor_data.cpp
parent377d8845da051b93d568a55cab98433de7c82a36 (diff)
downloadredot-engine-f1ba23e8bb29a2921ca32f334596213c023555e6.tar.gz
Fix cleaning up inspector and history when deleting multiple nodes at once.
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp56
1 files changed, 40 insertions, 16 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index cfe382bcd3..1421db42ec 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -39,6 +39,7 @@
#include "editor/editor_plugin.h"
#include "editor/editor_scale.h"
#include "editor/editor_undo_redo_manager.h"
+#include "editor/multi_node_edit.h"
#include "editor/plugins/script_editor_plugin.h"
#include "scene/resources/packed_scene.h"
@@ -48,25 +49,48 @@ void EditorSelectionHistory::cleanup_history() {
for (int j = 0; j < history[i].path.size(); j++) {
if (!history[i].path[j].ref.is_null()) {
- // Reference is not null - object still alive.
- continue;
- }
-
- Object *obj = ObjectDB::get_instance(history[i].path[j].object);
- if (obj) {
- Node *n = Object::cast_to<Node>(obj);
- if (n && n->is_inside_tree()) {
- // Node valid and inside tree - object still alive.
+ // If the node is a MultiNodeEdit node, examine it and see if anything is missing from it.
+ Ref<MultiNodeEdit> multi_node_edit = history[i].path[j].ref;
+ if (multi_node_edit.is_valid()) {
+ Node *root = EditorNode::get_singleton()->get_edited_scene();
+ if (root) {
+ for (int k = 0; k < multi_node_edit->get_node_count(); k++) {
+ NodePath np = multi_node_edit->get_node(k);
+ Node *multi_node_selected_node = root->get_node_or_null(np);
+ if (!multi_node_selected_node) {
+ fail = true;
+ break;
+ }
+ }
+ } else {
+ fail = true;
+ }
+ } else {
+ // Reference is not null - object still alive.
continue;
}
- if (!n) {
- // Node possibly still alive.
- continue;
- }
- } // Else: object not valid - not alive.
+ }
- fail = true;
- break;
+ if (!fail) {
+ Object *obj = ObjectDB::get_instance(history[i].path[j].object);
+ if (obj) {
+ Node *n = Object::cast_to<Node>(obj);
+ if (n && n->is_inside_tree()) {
+ // Node valid and inside tree - object still alive.
+ continue;
+ }
+ if (!n) {
+ // Node possibly still alive.
+ continue;
+ }
+ } // Else: object not valid - not alive.
+
+ fail = true;
+ }
+
+ if (fail) {
+ break;
+ }
}
if (fail) {