summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-27 10:17:47 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-27 10:17:47 +0100
commite770a38d0051c2685dec2e30c5e0d01c6046e393 (patch)
tree6417551f9e47a08141314d868c9ebe7e09a1c03c /editor/code_editor.cpp
parent8f98ed65f7d4c1da6256213769fc74ee8c836766 (diff)
parentea401f9853b3d84a77dfaedb9a5f7c286ec21d05 (diff)
downloadredot-engine-e770a38d0051c2685dec2e30c5e0d01c6046e393.tar.gz
Merge pull request #88742 from MajorMcDoom/text-editor-zoom
Fix the text editor theme not being applied on editor start
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp5
1 files changed, 0 insertions, 5 deletions
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<int>());
}
- _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")));