1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Increase the source font's line spacing

This also increases line spacing in license texts in the editor's
About dialog.
This commit is contained in:
Hugo Locurcio
2018-10-14 21:38:35 +02:00
parent b95f0e61e0
commit 976b3e3284
4 changed files with 5 additions and 3 deletions

View File

@@ -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;