mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Rename queue_delete => queue_free
# Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp
This commit is contained in:
@@ -231,7 +231,7 @@ void EditorToaster::_auto_hide_or_free_toasts() {
|
||||
// Delete the control right away (removed as child) as it might cause issues otherwise when iterative over the vbox_container children.
|
||||
for (unsigned int i = 0; i < to_delete.size(); i++) {
|
||||
vbox_container->remove_child(to_delete[i]);
|
||||
to_delete[i]->queue_delete();
|
||||
to_delete[i]->queue_free();
|
||||
toasts.erase(to_delete[i]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user