Merge pull request #8759 from AlexHoratio/master

Fixed #8526, popup menu width now responds to submenu icon
This commit is contained in:
Rémi Verschelde 2017-05-15 08:00:50 +02:00 committed by GitHub
commit 27dd415196

View file

@ -108,6 +108,11 @@ Size2 PopupMenu::get_minimum_size() const {
accel_max_w = MAX(accel_w, accel_max_w);
}
if (items[i].submenu != "") {
size.width += get_icon("submenu")->get_width();
}
minsize.height += size.height;
max_w = MAX(max_w, size.width);
}