Skip to content

Commit

Permalink
Make code minimap to be visible by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaosus committed Aug 23, 2019
1 parent 89bcfa4 commit db7bbbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit db7bbbd

Please sign in to comment.