Fixed optional idx argument in add_item (OptionMeny & PopupMenu)
(cherry picked from commit ffc5f360e8
)
This commit is contained in:
parent
fdb94e3409
commit
6b07e4b535
|
@ -594,7 +594,7 @@ void PopupMenu::add_item(const String &p_label, int p_ID, uint32_t p_accel) {
|
|||
item.text = p_label;
|
||||
item.xl_text = tr(p_label);
|
||||
item.accel = p_accel;
|
||||
item.ID = p_ID;
|
||||
item.ID = p_ID == -1 ? items.size() : p_ID;
|
||||
items.push_back(item);
|
||||
update();
|
||||
minimum_size_changed();
|
||||
|
@ -632,7 +632,7 @@ void PopupMenu::add_check_item(const String &p_label, int p_ID, uint32_t p_accel
|
|||
item.text = p_label;
|
||||
item.xl_text = tr(p_label);
|
||||
item.accel = p_accel;
|
||||
item.ID = p_ID;
|
||||
item.ID = p_ID == -1 ? items.size() : p_ID;
|
||||
item.checkable_type = Item::CHECKABLE_TYPE_CHECK_BOX;
|
||||
items.push_back(item);
|
||||
update();
|
||||
|
|
Loading…
Reference in New Issue