diff options
author | Chaosus <chaosus89@gmail.com> | 2019-03-01 10:53:59 +0300 |
---|---|---|
committer | Chaosus <chaosus89@gmail.com> | 2019-03-01 11:48:36 +0300 |
commit | 7bb449ae70dca35d4381c9dfb585c5bf0db63707 (patch) | |
tree | 47f89b3f07c2646c65c5ffd292d64dfd97d82698 /editor/code_editor.cpp | |
parent | 8d117b214f2bcd14015532fdfbed9b3f059da0e6 (diff) |
Updates error label font in status bar
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index e9580ae0d1..7ee4d5b03b 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1144,6 +1144,7 @@ void CodeTextEditor::_update_font() { text_editor->add_font_override("font", get_font("source", "EditorFonts")); Ref<Font> status_bar_font = get_font("status_source", "EditorFonts"); + error->add_font_override("font", status_bar_font); int count = status_bar->get_child_count(); for (int i = 0; i < count; i++) { Control *n = Object::cast_to<Control>(status_bar->get_child(i)); |