From 1a4083d8289b12577d83da3e6a310335bc9be014 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 8 Oct 2005 07:38:44 +0000 Subject: [PATCH] Adjust menu scrollbar height to the actual text height. Idea taken from patch #1306243 by Stephan Wezel. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7598 a1c6a512-1295-4272-9138-f99709370657 --- apps/menu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/menu.c b/apps/menu.c index ad22047b9d..d1cddcd796 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -156,6 +156,7 @@ void menu_draw(int m) #endif menu_lines = height / fh; + height = menu_lines * fh; #else int menu_lines = MENU_LINES;