From c415dc82d99131cf4a623b9af0d8bd98d76b537e Mon Sep 17 00:00:00 2001 From: izydorst Date: Fri, 4 Apr 2003 14:07:01 +0000 Subject: [PATCH] vertical menus height was too small by one pixel git-svn-id: svn://svn.cc65.org/cc65/trunk@2037 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/grc/grc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grc/grc.c b/src/grc/grc.c index 084849883..342f25dde 100644 --- a/src/grc/grc.c +++ b/src/grc/grc.c @@ -320,7 +320,7 @@ struct menuitem *curItem, *newItem; }; } else { /* menu is VERTICAL, ysize=item*15, count largest xsize of all items +~8? */ - myMenu.bot=myMenu.top+(14*item)-1; + myMenu.bot=myMenu.top+(14*item); for (a=0;a!=item;a++) { tmpsize=getNameSize(curItem->name); size = (size > tmpsize) ? size : tmpsize; -- 2.39.5