Skip to content

Commit

Permalink
Merge pull request #31589 from Chaosus/minimap_enabled
Browse files Browse the repository at this point in the history
Make code minimap to be visible by default
  • Loading branch information
akien-mga authored Aug 23, 2019
2 parents dd6388d + db7bbbd commit 2a855a0
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 2a855a0

Please sign in to comment.