diff options
Diffstat (limited to '')
| -rw-r--r-- | tools/editor/project_export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/project_export.cpp b/tools/editor/project_export.cpp index 7a1b2c518..dd3a9c3d3 100644 --- a/tools/editor/project_export.cpp +++ b/tools/editor/project_export.cpp @@ -921,7 +921,7 @@ bool ProjectExportDialog::_update_group_treef(TreeItem *p_parent,EditorFileSyste for(int i=0;i<p_dir->get_file_count();i++) { String fname = p_dir->get_file(i); - if (p_extensions.has(fname.to_lower().extension())) { + if (p_extensions.has(fname.to_lower().get_extension())) { String path = p_dir->get_file_path(i); if (filter!=String() && path.find(filter)==-1) |
