Merge pull request #43550 from KoBeWi/resourcism

Add option to exclude selected resources on export
This commit is contained in:
Rémi Verschelde
2021-04-01 00:20:54 +02:00
committed by GitHub
3 changed files with 15 additions and 0 deletions

View File

@ -1082,6 +1082,7 @@ ProjectExportDialog::ProjectExportDialog() {
export_filter->add_item(TTR("Export all resources in the project"));
export_filter->add_item(TTR("Export selected scenes (and dependencies)"));
export_filter->add_item(TTR("Export selected resources (and dependencies)"));
export_filter->add_item(TTR("Export all resources in the project except resources checked below"));
resources_vb->add_margin_child(TTR("Export Mode:"), export_filter);
export_filter->connect("item_selected", callable_mp(this, &ProjectExportDialog::_export_type_changed));