keep a minimum menu height so that the pixmaps (checkmarks) draw right in them

This commit is contained in:
Dana Jansens 2002-07-28 17:58:06 +00:00
parent 86af1224bd
commit d06cedce06

View file

@ -250,7 +250,8 @@ int Basemenu::remove(int index) {
void Basemenu::update(void) {
MenuStyle *style = screen->getMenuStyle();
menu.item_h = style->f_font->height() + menu.bevel_w;
menu.item_h = (style->f_font->height() < 9 ? 9 : style->f_font->height()) +
menu.bevel_w; // 9 for the menu pixmaps (checkmarks)
menu.title_h = style->t_font->height() + menu.bevel_w * 2;
if (title_vis) {