diff options
author | louis <louis.braun@gmx.de> | 2014-01-27 19:14:43 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-01-27 19:14:43 +0100 |
commit | 26f46355f9fb20b3921d1188c7084dcaa2b838d4 (patch) | |
tree | 2a7ba8a2121a19803dff09dc45bd82e7752581da /recmenu.c | |
parent | 5eabb6e7c865a9beb172b8b9b9bde4857cabafce (diff) | |
download | vdr-plugin-tvguide-26f46355f9fb20b3921d1188c7084dcaa2b838d4.tar.gz vdr-plugin-tvguide-26f46355f9fb20b3921d1188c7084dcaa2b838d4.tar.bz2 |
fixed bug in diplaying list of search timers
Diffstat (limited to 'recmenu.c')
-rw-r--r-- | recmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ void cRecMenu::AddMenuItem(cRecMenuItem *item, bool inFront) { bool cRecMenu::AddMenuItemInitial(cRecMenuItem *item, bool inFront) { currentHeight += item->GetHeight(); int totalHeight = headerHeight + footerHeight + currentHeight + 2*border; - if (totalHeight >= geoManager.osdHeight) { + if (totalHeight >= geoManager.osdHeight - 10) { scrollable = true; currentHeight -= item->GetHeight(); if (deleteMenuItems) { |