Add support for radio-looking items with icon

Letting users of `PopupMenu` use them. `OptionButton` was one of those interested and is updated in this commit.

Fixes #18063.
This commit is contained in:
Pedro J. Estébanez
2018-04-09 19:55:24 +02:00
parent 9101a89510
commit b964a9e678
4 changed files with 24 additions and 1 deletions

View File

@@ -112,7 +112,7 @@ void OptionButton::pressed() {
void OptionButton::add_icon_item(const Ref<Texture> &p_icon, const String &p_label, int p_ID) {
popup->add_icon_check_item(p_icon, p_label, p_ID);
popup->add_icon_radio_check_item(p_icon, p_label, p_ID);
if (popup->get_item_count() == 1)
select(0);
}