1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Merge pull request #10625 from Rubonnek/fixed-leaks

Fixed several memory leaks
This commit is contained in:
Rémi Verschelde
2017-08-27 02:10:32 +02:00
committed by GitHub
7 changed files with 13 additions and 1 deletions

View File

@@ -4102,3 +4102,7 @@ CanvasItemEditorViewport::CanvasItemEditorViewport(EditorNode *p_node, CanvasIte
label_desc->hide();
editor->get_gui_base()->add_child(label_desc);
}
CanvasItemEditorViewport::~CanvasItemEditorViewport() {
memdelete(preview);
}