Fixed #8526, popup menu width now responds to submenu icon

(cherry picked from commit 69359f2220)
This commit is contained in:
AlexHoratio 2017-05-14 12:42:42 +01:00 committed by Rémi Verschelde
parent 43b0aa612f
commit 3cd1185b25
1 changed files with 5 additions and 0 deletions

View File

@ -106,6 +106,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);
}