diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2020-02-10 09:19:02 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2020-02-10 09:32:15 +0100 |
commit | aeff87686859f5b6d9fde42c2e3cb12fcc2f4adc (patch) | |
tree | ad0ef018a4e36f509c09a34438f381e1335e0899 | |
parent | 47f19cc776940469a006aa3f7331166b32d9f7b4 (diff) |
Ignore hidden files and directories in find in files
-rw-r--r-- | editor/find_in_files.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/find_in_files.cpp b/editor/find_in_files.cpp index 4ab90ad3e4..b24a5c38f2 100644 --- a/editor/find_in_files.cpp +++ b/editor/find_in_files.cpp @@ -235,9 +235,11 @@ void FindInFiles::_scan_dir(String path, PoolStringArray &out_folders) { if (file == "") break; - // Ignore special dirs and hidden dirs (such as .git and .import) + // Ignore special dirs (such as .git and .import) if (file == "." || file == ".." || file.begins_with(".")) continue; + if (dir->current_is_hidden()) + continue; if (dir->current_is_dir()) out_folders.append(file); |