Fix Add button style in GroupsEditor

This commit is contained in:
Giganzo 2024-09-22 11:17:06 +02:00
parent 621cadcf65
commit 15f344173e

View File

@ -840,7 +840,7 @@ GroupsEditor::GroupsEditor() {
add_child(hbc);
add = memnew(Button);
add->set_flat(true);
add->set_theme_type_variation("FlatMenuButton");
add->set_tooltip_text(TTR("Add a new group."));
add->connect(SceneStringName(pressed), callable_mp(this, &GroupsEditor::_show_add_group_dialog));
hbc->add_child(add);