summaryrefslogtreecommitdiffstats
path: root/editor/export
diff options
context:
space:
mode:
authorHilderin <81109165+Hilderin@users.noreply.github.com>2024-06-14 01:15:05 -0400
committerHilderin <81109165+Hilderin@users.noreply.github.com>2024-06-14 01:15:05 -0400
commitdf10fdc3674f9637a4a2640fdd2ffc8930604149 (patch)
tree67019345cdc4b0bf7c8cfbcfcf4e9ed17ca5b5eb /editor/export
parent680e489189796af2c34f06df49e19b17dec5c6fc (diff)
downloadredot-engine-df10fdc3674f9637a4a2640fdd2ffc8930604149.tar.gz
Fix Bug when downloading export templates and re-open the template manager #93121
Diffstat (limited to 'editor/export')
-rw-r--r--editor/export/export_template_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp
index b6584a6092..588d99f08f 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);