summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-07-03 14:43:15 +0200
committerkobewi <kobewi4e@gmail.com>2023-07-03 14:43:15 +0200
commit93791772868f2d392d4956997d4d539e64828479 (patch)
tree6350061baccc893e0de25d7a1ba758883e10dc6b /editor/editor_data.cpp
parent46424488edc341b65467ee7fd3ac423e4d49ad34 (diff)
downloadredot-engine-93791772868f2d392d4956997d4d539e64828479.tar.gz
Fix node selection not handled correctly at launch
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index be7376a5c4..af7163eec1 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -925,7 +925,6 @@ Dictionary EditorData::restore_edited_scene_state(EditorSelection *p_selection,
for (Node *E : es.selection) {
p_selection->add_node(E);
}
- p_selection->cancel_update(); // Selection update results in redundant Node edit, so we cancel it.
set_editor_plugin_states(es.editor_states);
return es.custom_state;
@@ -1350,10 +1349,6 @@ void EditorSelection::clear() {
node_list_changed = true;
}
-void EditorSelection::cancel_update() {
- changed = false;
-}
-
EditorSelection::EditorSelection() {
}