Merge pull request #97940 from syntaxerror247/a_refreshing_bug

Refresh Filesystem Dock after android build template is created
This commit is contained in:
Thaddeus Crews 2024-10-10 18:13:23 -05:00
commit e589074f69
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84

View File

@ -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;
}