diff options
author | Martin Boué <martbou35@gmail.com> | 2023-05-11 21:28:17 +0200 |
---|---|---|
committer | Martin Boué <martbou35@gmail.com> | 2023-05-11 21:29:08 +0200 |
commit | 886e73683d2b386def3b9f8b11044bd02ce81db1 (patch) | |
tree | fbe5d760e31e9095285260e34f03654d2cd22338 /editor/export/project_export.cpp | |
parent | fd4a06c51555904104b18494d0224f450d74fe2a (diff) | |
download | redot-engine-886e73683d2b386def3b9f8b11044bd02ce81db1.tar.gz |
Fix include text when excluding resources to export
Diffstat (limited to 'editor/export/project_export.cpp')
-rw-r--r-- | editor/export/project_export.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/export/project_export.cpp b/editor/export/project_export.cpp index de696b07b4..8009b3038c 100644 --- a/editor/export/project_export.cpp +++ b/editor/export/project_export.cpp @@ -242,6 +242,7 @@ void ProjectExportDialog::_edit_preset(int p_index) { export_filter->select(current->get_export_filter()); include_filters->set_text(current->get_include_filter()); + include_label->set_text(current->get_export_filter() == EditorExportPreset::EXCLUDE_SELECTED_RESOURCES ? TTR("Resources to exclude:") : TTR("Resources to export:")); exclude_filters->set_text(current->get_exclude_filter()); server_strip_message->set_visible(current->get_export_filter() == EditorExportPreset::EXPORT_CUSTOMIZED); @@ -702,6 +703,7 @@ void ProjectExportDialog::_export_type_changed(int p_which) { if (filter_type == EditorExportPreset::EXPORT_CUSTOMIZED && current->get_customized_files_count() == 0) { current->set_file_export_mode("res://", EditorExportPreset::MODE_FILE_STRIP); } + include_label->set_text(current->get_export_filter() == EditorExportPreset::EXCLUDE_SELECTED_RESOURCES ? TTR("Resources to exclude:") : TTR("Resources to export:")); updating = true; _fill_resource_tree(); |