You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Export: Fix leak or orphaned Controls after #34911
They need to be hidden but still in tree.
This commit is contained in:
@@ -1178,11 +1178,13 @@ ProjectExportDialog::ProjectExportDialog() {
|
|||||||
// Patch packages.
|
// Patch packages.
|
||||||
|
|
||||||
VBoxContainer *patch_vb = memnew(VBoxContainer);
|
VBoxContainer *patch_vb = memnew(VBoxContainer);
|
||||||
|
sections->add_child(patch_vb);
|
||||||
|
patch_vb->set_name(TTR("Patches"));
|
||||||
|
|
||||||
// FIXME: Patching support doesn't seem properly implemented yet, so we hide it.
|
// FIXME: Patching support doesn't seem properly implemented yet, so we hide it.
|
||||||
// The rest of the code is still kept for now, in the hope that it will be made
|
// The rest of the code is still kept for now, in the hope that it will be made
|
||||||
// functional and reactivated.
|
// functional and reactivated.
|
||||||
//sections->add_child(patch_vb);
|
patch_vb->hide();
|
||||||
patch_vb->set_name(TTR("Patches"));
|
|
||||||
|
|
||||||
patches = memnew(Tree);
|
patches = memnew(Tree);
|
||||||
patch_vb->add_child(patches);
|
patch_vb->add_child(patches);
|
||||||
|
|||||||
Reference in New Issue
Block a user