You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix VisualScript editor crash when deleting selected nodes
Fixes #64662.
Regression from #61145.
(cherry picked from commit 13d1ee6058)
This commit is contained in:
@@ -1846,7 +1846,7 @@ void VisualScriptEditor::_on_nodes_delete(const Array &p_nodes) {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (int i = 0; i < graph->get_child_count(); i++) {
|
||||
for (int i = 0; i < p_nodes.size(); i++) {
|
||||
to_erase.push_back(p_nodes[i].operator String().to_int());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user