summaryrefslogtreecommitdiffstats
path: root/core/core_bind.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-05-31 14:33:58 +0200
committerGitHub <noreply@github.com>2021-05-31 14:33:58 +0200
commit643da45e165a908fc49b201bd65bf326647306db (patch)
treeac47e58088ee7553060d8491a137fd8f9a086cea /core/core_bind.h
parent144759303de27ea2d5f73edd6965cc6b0d5b0fe3 (diff)
parentbd50006aae6e9a84489b40f4f56c50ef79953137 (diff)
downloadredot-engine-643da45e165a908fc49b201bd65bf326647306db.tar.gz
Merge pull request #49173 from KoBeWi/navigational_oblivion
Tweak arguments of list_dir_begin() (skips navigational and hidden files by default)
Diffstat (limited to 'core/core_bind.h')
-rw-r--r--core/core_bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_bind.h b/core/core_bind.h
index be8b30b38d..8253040a12 100644
--- a/core/core_bind.h
+++ b/core/core_bind.h
@@ -467,7 +467,7 @@ public:
bool is_open() const;
- Error list_dir_begin(bool p_skip_navigational = false, bool p_skip_hidden = false); // This starts dir listing.
+ Error list_dir_begin(bool p_show_navigational = false, bool p_show_hidden = false); // This starts dir listing.
String get_next();
bool current_is_dir() const;