diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-10-25 17:31:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 17:31:24 +0200 |
commit | 3f23b2ecf4b2a7ff1c234cdc46d1c38409dda75a (patch) | |
tree | 17d2192bc127c267b199c1f4a1b0d4597871c6b6 /editor/plugins/script_text_editor.cpp | |
parent | 0b2d1364c588d6a85d87e70da94ac6c3157476a9 (diff) | |
parent | 976b3e32849d035672e0bc51146af62962d12845 (diff) | |
download | redot-engine-3f23b2ecf4b2a7ff1c234cdc46d1c38409dda75a.tar.gz |
Merge pull request #23017 from Calinou/increase-source-font-line-spacing
Increase the source font's line spacing
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 362b8543d4..27f5910d94 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -179,7 +179,7 @@ void ScriptTextEditor::_load_theme_settings() { text_edit->add_color_override("search_result_border_color", search_result_border_color); text_edit->add_color_override("symbol_color", symbol_color); - text_edit->add_constant_override("line_spacing", EDITOR_DEF("text_editor/theme/line_spacing", 4)); + text_edit->add_constant_override("line_spacing", EDITOR_DEF("text_editor/theme/line_spacing", 6)); colors_cache.symbol_color = symbol_color; colors_cache.keyword_color = keyword_color; |