1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Fixed export preset not duplicating selected files

Previously, export presets did not duplicate selected files for
excluding / including specific files in the export. This commit fixes it by
duplicating the selected files.
This commit is contained in:
DallasHuff
2025-12-18 10:10:48 -06:00
parent 8a6408c1ce
commit 1ee63e4f28
3 changed files with 12 additions and 0 deletions

View File

@@ -756,6 +756,8 @@ void ProjectExportDialog::_duplicate_preset() {
preset->set_export_filter(current->get_export_filter());
preset->set_include_filter(current->get_include_filter());
preset->set_exclude_filter(current->get_exclude_filter());
preset->set_customized_files(current->get_customized_files());
preset->set_selected_files(current->get_selected_files());
preset->set_patches(current->get_patches());
preset->set_patch_delta_encoding_enabled(current->is_patch_delta_encoding_enabled());
preset->set_patch_delta_zstd_level(current->get_patch_delta_zstd_level());