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/tiles | |
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/tiles')
-rw-r--r-- | editor/plugins/tiles/tile_set_atlas_source_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tiles/tile_set_atlas_source_editor.cpp b/editor/plugins/tiles/tile_set_atlas_source_editor.cpp index 9cab4c5103..8b9d2a4e71 100644 --- a/editor/plugins/tiles/tile_set_atlas_source_editor.cpp +++ b/editor/plugins/tiles/tile_set_atlas_source_editor.cpp @@ -997,7 +997,7 @@ void TileSetAtlasSourceEditor::_update_atlas_view() { Button *button = memnew(Button); button->set_flat(true); button->set_icon(get_editor_theme_icon(SNAME("Add"))); - button->add_theme_style_override("normal", memnew(StyleBoxEmpty)); + button->add_theme_style_override(CoreStringName(normal), memnew(StyleBoxEmpty)); button->add_theme_style_override("hover", memnew(StyleBoxEmpty)); button->add_theme_style_override("focus", memnew(StyleBoxEmpty)); button->add_theme_style_override(SceneStringName(pressed), memnew(StyleBoxEmpty)); |