From a00ead2a1f79acbabaf504770a8e1d7491c29f57 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 2 Jan 2020 21:47:44 +0100 Subject: Enable the script editor line length guideline by default Now that the GDScript style guide has an official recommendation, it makes sense to enable the line length guideline by default. --- editor/editor_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor') diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 3426e58543..92e3f61ca5 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -456,7 +456,7 @@ void EditorSettings::_load_defaults(Ref p_extra_config) { _initial_set("text_editor/appearance/show_info_gutter", true); _initial_set("text_editor/appearance/code_folding", true); _initial_set("text_editor/appearance/word_wrap", false); - _initial_set("text_editor/appearance/show_line_length_guideline", false); + _initial_set("text_editor/appearance/show_line_length_guideline", true); _initial_set("text_editor/appearance/line_length_guideline_column", 80); hints["text_editor/appearance/line_length_guideline_column"] = PropertyInfo(Variant::INT, "text_editor/appearance/line_length_guideline_column", PROPERTY_HINT_RANGE, "20, 160, 1"); -- cgit v1.2.3