diff options
author | Anish Mishra <mishragames@gmail.com> | 2024-10-07 22:03:41 +0530 |
---|---|---|
committer | Anish Mishra <mishragames@gmail.com> | 2024-10-08 06:30:44 +0530 |
commit | 2323042e7bcb23f8e384c4106f96785808b13efa (patch) | |
tree | d4601dfa7b9d5d865f00e6ca3c97858d96d912ce | |
parent | 842f98239713fd10cfd648cd6aa3781895f289eb (diff) | |
download | redot-engine-2323042e7bcb23f8e384c4106f96785808b13efa.tar.gz |
Refresh Filesystem Dock after android build template is created
-rw-r--r-- | editor/export/export_template_manager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp index 5360b6fb60..2309319376 100644 --- a/editor/export/export_template_manager.cpp +++ b/editor/export/export_template_manager.cpp @@ -34,6 +34,7 @@ #include "core/io/json.h" #include "core/io/zip_io.h" #include "core/version.h" +#include "editor/editor_file_system.h" #include "editor/editor_node.h" #include "editor/editor_paths.h" #include "editor/editor_settings.h" @@ -876,7 +877,7 @@ Error ExportTemplateManager::install_android_template_from_file(const String &p_ ProgressDialog::get_singleton()->end_task("uncompress_src"); unzClose(pkg); - + EditorFileSystem::get_singleton()->scan_changes(); return OK; } |