diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-10-19 18:05:19 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-10-19 18:14:14 +0200 |
commit | 215e036600809fd588ec67b8d39efe12ae1ff4c5 (patch) | |
tree | 2ca6a6cf9df7071a6026f50852a9f3e4894e6518 /editor/editor_about.cpp | |
parent | f8818f85e6c43cdf1277e8ae85eba19ca0a003b0 (diff) | |
download | redot-engine-215e036600809fd588ec67b8d39efe12ae1ff4c5.tar.gz |
Add bulk change guards to successive theme overrides in Editor and GUI
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 848510f9c3..0f47466d23 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -42,12 +42,19 @@ const String EditorAbout::META_TEXT_TO_COPY = "text_to_copy"; void EditorAbout::_theme_changed() { const Ref<Font> font = get_theme_font(SNAME("source"), EditorStringName(EditorFonts)); const int font_size = get_theme_font_size(SNAME("source_size"), EditorStringName(EditorFonts)); + + _tpl_text->begin_bulk_theme_override(); _tpl_text->add_theme_font_override("normal_font", font); _tpl_text->add_theme_font_size_override("normal_font_size", font_size); _tpl_text->add_theme_constant_override("line_separation", 4 * EDSCALE); + _tpl_text->end_bulk_theme_override(); + + _license_text->begin_bulk_theme_override(); _license_text->add_theme_font_override("normal_font", font); _license_text->add_theme_font_size_override("normal_font_size", font_size); _license_text->add_theme_constant_override("line_separation", 4 * EDSCALE); + _license_text->end_bulk_theme_override(); + _logo->set_texture(get_editor_theme_icon(SNAME("Logo"))); } |