From ea401f9853b3d84a77dfaedb9a5f7c286ec21d05 Mon Sep 17 00:00:00 2001 From: Zi Ye Date: Fri, 23 Feb 2024 17:06:15 -0600 Subject: Fixed the text editor theme not being applied on editor start. --- editor/code_editor.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'editor/code_editor.cpp') diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index d3872349e9..3efefe83c3 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1059,7 +1059,6 @@ void CodeTextEditor::update_editor_settings() { text_editor->set_line_length_guidelines(TypedArray()); } - _update_font_ligatures(); set_zoom_factor(zoom_factor); } @@ -1683,10 +1682,6 @@ void CodeTextEditor::goto_error() { } void CodeTextEditor::_update_text_editor_theme() { - if (!EditorThemeManager::is_generated_theme_outdated()) { - return; - } - emit_signal(SNAME("load_theme_settings")); error_button->set_icon(get_editor_theme_icon(SNAME("StatusError"))); -- cgit v1.2.3