diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-21 18:36:07 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-21 18:36:07 +0100 |
commit | fecdeb78add6238fe0cfdfb976a632efd6f0f7b1 (patch) | |
tree | 464af79ecd9a5aba7742824e167bcff80c35eb45 /scene/theme | |
parent | f1b23e8c3958d9e7d18c03ca9fea935eae70ea7e (diff) | |
parent | b67a938caaa8fe87496ed076d6871549dfc801d8 (diff) |
Merge pull request #70404 from YuriSizov/theme-!important
Add fallback values for font and scale to the default theme
Diffstat (limited to 'scene/theme')
-rw-r--r-- | scene/theme/theme_db.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scene/theme/theme_db.cpp b/scene/theme/theme_db.cpp index 0268a685fe..ae64313741 100644 --- a/scene/theme/theme_db.cpp +++ b/scene/theme/theme_db.cpp @@ -70,7 +70,9 @@ void ThemeDB::initialize_theme() { Ref<Font> font; if (!font_path.is_empty()) { font = ResourceLoader::load(font_path); - if (!font.is_valid()) { + if (font.is_valid()) { + set_fallback_font(font); + } else { ERR_PRINT("Error loading custom font '" + font_path + "'"); } } @@ -84,9 +86,6 @@ void ThemeDB::initialize_theme() { Ref<Theme> theme = ResourceLoader::load(theme_path); if (theme.is_valid()) { set_project_theme(theme); - if (font.is_valid()) { - set_fallback_font(font); - } } else { ERR_PRINT("Error loading custom theme '" + theme_path + "'"); } |