Browse Source

Ensures that export path is used when exporting PCK/ZIP

Maganty Rushyendra 5 years ago
parent
commit
3a6c14e5c4
1 changed files with 6 additions and 0 deletions
  1. 6 0
      editor/project_export.cpp

+ 6 - 0
editor/project_export.cpp

@@ -830,6 +830,12 @@ void ProjectExportDialog::_refresh_parent_checks(TreeItem *p_item) {
 }
 }
 
 
 void ProjectExportDialog::_export_pck_zip() {
 void ProjectExportDialog::_export_pck_zip() {
+	Ref<EditorExportPreset> 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();
 	export_pck_zip->popup_file_dialog();
 }
 }