1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

fixed duplicate buttons style to match the other buttons in the SpriteFrames editor plugin

This commit is contained in:
Sohonyai Tibor
2025-01-08 21:58:34 +01:00
parent a659548946
commit 25e0278525

View File

@@ -1904,7 +1904,7 @@ SpriteFramesEditor::SpriteFramesEditor() {
add_anim->connect(SceneStringName(pressed), callable_mp(this, &SpriteFramesEditor::_animation_add));
duplicate_anim = memnew(Button);
duplicate_anim->set_flat(true);
duplicate_anim->set_theme_type_variation(SceneStringName(FlatButton));
hbc_animlist->add_child(duplicate_anim);
duplicate_anim->connect(SceneStringName(pressed), callable_mp(this, &SpriteFramesEditor::_animation_duplicate));