From df10fdc3674f9637a4a2640fdd2ffc8930604149 Mon Sep 17 00:00:00 2001 From: Hilderin <81109165+Hilderin@users.noreply.github.com> Date: Fri, 14 Jun 2024 01:15:05 -0400 Subject: [PATCH] Fix Bug when downloading export templates and re-open the template manager #93121 --- editor/export/export_template_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp index b6584a6092fa..588d99f08fab 100644 --- a/editor/export/export_template_manager.cpp +++ b/editor/export/export_template_manager.cpp @@ -639,7 +639,7 @@ void ExportTemplateManager::_open_template_folder(const String &p_version) { void ExportTemplateManager::popup_manager() { _update_template_status(); - if (downloads_available) { + if (downloads_available && !is_downloading_templates) { _refresh_mirrors(); } popup_centered(Size2(720, 280) * EDSCALE);