diff options
| author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2022-08-11 16:26:30 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-11 16:26:30 +0300 |
| commit | 6c4fa12f825138c1679d86ff6cb02d44e8ab818b (patch) | |
| tree | 67dac63cf843b2b26aca0b7f2d03b32a8254182d /editor/plugins/texture_editor_plugin.cpp | |
| parent | e9e9e92e4864f9dc34e24f37cb93c88cc3649104 (diff) | |
| parent | e06cd2742f8af57b23fa11dec62ba9c4eb544291 (diff) | |
Merge pull request #61328 from KoBeWi/recurring_theme
Add missing properties to default theme
Diffstat (limited to 'editor/plugins/texture_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/texture_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/texture_editor_plugin.cpp b/editor/plugins/texture_editor_plugin.cpp index f6b02d5f80..be382759f5 100644 --- a/editor/plugins/texture_editor_plugin.cpp +++ b/editor/plugins/texture_editor_plugin.cpp @@ -137,7 +137,7 @@ TexturePreview::TexturePreview(Ref<Texture2D> p_texture, bool p_show_metadata) { // It's okay that these colors are static since the grid color is static too. metadata_label->add_theme_color_override("font_color", Color::named("white")); - metadata_label->add_theme_color_override("font_color_shadow", Color::named("black")); + metadata_label->add_theme_color_override("font_shadow_color", Color::named("black")); metadata_label->add_theme_font_size_override("font_size", 14 * EDSCALE); metadata_label->add_theme_color_override("font_outline_color", Color::named("black")); |