Merge pull request #45359 from mrushyendra/export_pckzip

Make use of export path when exporting PCK/ZIP
This commit is contained in:
Rémi Verschelde 2021-01-26 00:53:19 +01:00 committed by GitHub
commit ad0f1c6670
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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