mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
Remove autocomplete_setters_and_getters setting
This commit is contained in:
parent
28174d531b
commit
c055c912fb
3 changed files with 1 additions and 6 deletions
|
@ -946,8 +946,7 @@ static void _find_identifiers_in_base(const GDScriptCompletionIdentifier &p_base
|
|||
|
||||
if (!_static || Engine::get_singleton()->has_singleton(type)) {
|
||||
List<MethodInfo> methods;
|
||||
bool is_autocompleting_getters = GLOBAL_GET("debug/gdscript/completion/autocomplete_setters_and_getters").booleanize();
|
||||
ClassDB::get_method_list(type, &methods, false, !is_autocompleting_getters);
|
||||
ClassDB::get_method_list(type, &methods, false, true);
|
||||
for (const MethodInfo &E : methods) {
|
||||
if (E.name.begins_with("_")) {
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue