diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-10-05 16:45:12 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-10-05 16:54:13 +0200 |
commit | 1739ef5fd7a751753d50ff3f6f5486a3c650b240 (patch) | |
tree | ff21cf2dacbd3324611680640070074f64be3e17 /editor | |
parent | 27dab233d9d7ccf148a9779db1bc3a3dbdc329f4 (diff) |
Document the ability to include/exclude non-resource export folders
This closes #3646.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/project_export.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/editor/project_export.cpp b/editor/project_export.cpp index c54103f6f7..7456396460 100644 --- a/editor/project_export.cpp +++ b/editor/project_export.cpp @@ -1149,11 +1149,15 @@ ProjectExportDialog::ProjectExportDialog() { include_files->connect("item_edited", this, "_tree_changed"); include_filters = memnew(LineEdit); - resources_vb->add_margin_child(TTR("Filters to export non-resource files (comma separated, e.g: *.json, *.txt)"), include_filters); + resources_vb->add_margin_child( + TTR("Filters to export non-resource files/folders\n(comma-separated, e.g: *.json, *.txt, docs/*)"), + include_filters); include_filters->connect("text_changed", this, "_filter_changed"); exclude_filters = memnew(LineEdit); - resources_vb->add_margin_child(TTR("Filters to exclude files from project (comma separated, e.g: *.json, *.txt)"), exclude_filters); + resources_vb->add_margin_child( + TTR("Filters to exclude files/folders from project\n(comma-separated, e.g: *.json, *.txt, docs/*)"), + exclude_filters); exclude_filters->connect("text_changed", this, "_filter_changed"); VBoxContainer *patch_vb = memnew(VBoxContainer); |