You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Unify usage of GLOBAL/EDITOR_GET
This commit is contained in:
@@ -466,7 +466,7 @@ void FindInFilesDialog::_notification(int p_what) {
|
||||
for (int i = 0; i < _filters_container->get_child_count(); i++) {
|
||||
_filters_container->get_child(i)->queue_delete();
|
||||
}
|
||||
Array exts = ProjectSettings::get_singleton()->get("editor/script/search_in_file_extensions");
|
||||
Array exts = GLOBAL_GET("editor/script/search_in_file_extensions");
|
||||
for (int i = 0; i < exts.size(); ++i) {
|
||||
CheckBox *cb = memnew(CheckBox);
|
||||
cb->set_text(exts[i]);
|
||||
|
||||
Reference in New Issue
Block a user