Merge pull request #88026 from Calinou/editor-default-enable-add-type-hints

Enable Add Type Hints editor setting by default
This commit is contained in:
Rémi Verschelde
2024-02-08 10:53:58 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -619,7 +619,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
EDITOR_SETTING(Variant::FLOAT, PROPERTY_HINT_RANGE, "text_editor/completion/code_complete_delay", 0.3, "0.01,5,0.01,or_greater")
_initial_set("text_editor/completion/put_callhint_tooltip_below_current_line", true);
_initial_set("text_editor/completion/complete_file_paths", true);
_initial_set("text_editor/completion/add_type_hints", false);
_initial_set("text_editor/completion/add_type_hints", true);
_initial_set("text_editor/completion/use_single_quotes", false);
_initial_set("text_editor/completion/colorize_suggestions", true);