mirror of
https://github.com/godotengine/godot.git
synced 2024-11-12 23:24:26 +00:00
Maked status bar label fonts updateable
This commit is contained in:
parent
cbdd410a6f
commit
42fccfb0a5
@ -771,6 +771,14 @@ void CodeTextEditor::set_error(const String &p_error) {
|
||||
void CodeTextEditor::_update_font() {
|
||||
|
||||
text_editor->add_font_override("font", get_font("source", "EditorFonts"));
|
||||
|
||||
Ref<Font> status_bar_font = get_font("status_source", "EditorFonts");
|
||||
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));
|
||||
if (n)
|
||||
n->add_font_override("font", status_bar_font);
|
||||
}
|
||||
}
|
||||
|
||||
void CodeTextEditor::_on_settings_change() {
|
||||
@ -851,7 +859,7 @@ CodeTextEditor::CodeTextEditor() {
|
||||
text_editor->set_brace_matching(true);
|
||||
text_editor->set_auto_indent(true);
|
||||
|
||||
HBoxContainer *status_bar = memnew(HBoxContainer);
|
||||
status_bar = memnew(HBoxContainer);
|
||||
add_child(status_bar);
|
||||
status_bar->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
|
||||
|
@ -141,6 +141,7 @@ class CodeTextEditor : public VBoxContainer {
|
||||
|
||||
TextEdit *text_editor;
|
||||
FindReplaceBar *find_replace_bar;
|
||||
HBoxContainer *status_bar;
|
||||
|
||||
Label *line_nb;
|
||||
Label *col_nb;
|
||||
|
Loading…
Reference in New Issue
Block a user