From 3a6c14e5c4afb232c3f0ae28ae07306fab72b377 Mon Sep 17 00:00:00 2001 From: Maganty Rushyendra Date: Fri, 26 Jun 2020 19:53:18 +0800 Subject: [PATCH] Ensures that export path is used when exporting PCK/ZIP --- editor/project_export.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/editor/project_export.cpp b/editor/project_export.cpp index 4a8990daa9a..4bcb616fbd6 100644 --- a/editor/project_export.cpp +++ b/editor/project_export.cpp @@ -830,6 +830,12 @@ void ProjectExportDialog::_refresh_parent_checks(TreeItem *p_item) { } void ProjectExportDialog::_export_pck_zip() { + Ref current = get_current_preset(); + ERR_FAIL_COND(current.is_null()); + + String dir = current->get_export_path().get_base_dir(); + export_pck_zip->set_current_dir(dir); + export_pck_zip->popup_file_dialog(); }