diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-02 22:25:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 22:25:21 +0100 |
commit | 71d372a8ab1ee972326f8bd333f510330b7b7204 (patch) | |
tree | 4f20464d02c12a56db0341a0a2f0199480676da1 /editor | |
parent | 536cf9a527c8d90110853c879f35d402b6afb265 (diff) | |
parent | a00ead2a1f79acbabaf504770a8e1d7491c29f57 (diff) |
Merge pull request #34763 from Calinou/enable-line-length-guideline
Enable the script editor line length guideline by default
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<ConfigFile> 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"); |