diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-31 14:16:05 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-31 14:16:05 +0200 |
commit | 9c87e8c7b4a3b21894a06881f8e5f455dde7bcad (patch) | |
tree | 8808761f1716a365e0422b09e1a5080b08a76c96 /editor/plugins/bit_map_editor_plugin.cpp | |
parent | b201c087ab3a3dbe755f2e16c69c9550ce69d0bf (diff) | |
parent | cade5b88d9c4b01c57115a355743460047c0ca50 (diff) | |
download | redot-engine-9c87e8c7b4a3b21894a06881f8e5f455dde7bcad.tar.gz |
Merge pull request #91953 from AThousandShips/use_normal_sname
Use `CoreStringNames::normal` in more places
Diffstat (limited to 'editor/plugins/bit_map_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/bit_map_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/bit_map_editor_plugin.cpp b/editor/plugins/bit_map_editor_plugin.cpp index f1d86de537..668ea04d69 100644 --- a/editor/plugins/bit_map_editor_plugin.cpp +++ b/editor/plugins/bit_map_editor_plugin.cpp @@ -55,7 +55,7 @@ BitMapEditor::BitMapEditor() { Ref<StyleBoxEmpty> stylebox; stylebox.instantiate(); stylebox->set_content_margin(SIDE_RIGHT, 4 * EDSCALE); - size_label->add_theme_style_override("normal", stylebox); + size_label->add_theme_style_override(CoreStringName(normal), stylebox); } /////////////////////// |