Merge pull request #64772 from akien-mga/3.x-fix-vs-delete-crash
Fix VisualScript editor crash when deleting selected nodes
This commit is contained in:
commit
ecc32f8b3e
1 changed files with 1 additions and 1 deletions
|
@ -1888,7 +1888,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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue