Call minimum_size_changed() in PopupMenu::remove_item()
When removing an item from a PopupMenu we need to update the control's size cache otherwise the size of the PopupMenu itself lags behind by 1 item size. Meaning the PopupMenu will remain too large.
This commit is contained in:
parent
968b31e971
commit
2d032c1562
|
@ -1099,6 +1099,7 @@ void PopupMenu::remove_item(int p_idx) {
|
||||||
|
|
||||||
items.remove(p_idx);
|
items.remove(p_idx);
|
||||||
update();
|
update();
|
||||||
|
minimum_size_changed();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PopupMenu::add_separator(const String &p_text) {
|
void PopupMenu::add_separator(const String &p_text) {
|
||||||
|
|
Loading…
Reference in New Issue