mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Fix installing export templates from file
3de20641f5 did break installing export
templates from file. This patch is fixing it.
This commit is contained in:
@@ -555,7 +555,7 @@ ExportTemplateManager::ExportTemplateManager() {
|
||||
template_open->add_filter("*.tpz ; Godot Export Templates");
|
||||
template_open->set_access(FileDialog::ACCESS_FILESYSTEM);
|
||||
template_open->set_mode(FileDialog::MODE_OPEN_FILE);
|
||||
template_open->connect("file_selected", this, "_install_from_file");
|
||||
template_open->connect("file_selected", this, "_install_from_file", varray(true));
|
||||
add_child(template_open);
|
||||
|
||||
set_title(TTR("Export Template Manager"));
|
||||
|
||||
Reference in New Issue
Block a user