diff options
author | Yuri Roubinski <chaosus89@gmail.com> | 2019-08-23 08:42:15 +0300 |
---|---|---|
committer | Yuri Roubinski <chaosus89@gmail.com> | 2019-08-23 08:42:15 +0300 |
commit | db7bbbdbc7face2f29bcf2e1235c88a108288fbc (patch) | |
tree | de897e3d1f06834f3285fb2ba89970578db7c719 /editor/editor_settings.cpp | |
parent | 89bcfa4b364e1edc8e175f766b50d145864eb159 (diff) |
Make code minimap to be visible by default
Diffstat (limited to 'editor/editor_settings.cpp')
-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 61668d55be..ef5a067d01 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -448,7 +448,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { _initial_set("text_editor/line_numbers/show_info_gutter", true); _initial_set("text_editor/line_numbers/code_folding", true); _initial_set("text_editor/line_numbers/word_wrap", false); - _initial_set("text_editor/line_numbers/draw_minimap", false); + _initial_set("text_editor/line_numbers/draw_minimap", true); _initial_set("text_editor/line_numbers/minimap_width", 80); hints["text_editor/line_numbers/minimap_width"] = PropertyInfo(Variant::INT, "text_editor/line_numbers/minimap_width", PROPERTY_HINT_RANGE, "50,250,1"); _initial_set("text_editor/line_numbers/show_line_length_guideline", false); |