Add option to exclude selected resources on export

This commit is contained in:
Tomasz Chabora
2020-11-15 01:54:24 +01:00
committed by kobewi
parent 9e7348f788
commit eb4082b24a
3 changed files with 15 additions and 0 deletions

View File

@@ -1029,6 +1029,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));