Klaus Schmidinger wrote: > VDR developer version 1.3.26 is now available at > > ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.26.tar.bz2 > ... Well, looks like the change in handling "page down" in menus made it impossible to get the last page of a menu to display full screen. Here's a small fix for that: --- osdbase.c 2005/06/12 10:44:22 1.17 +++ osdbase.c 2005/06/12 14:58:40 @@ -362,7 +362,7 @@ if (current >= 0) { if (current < first) first = current; - else if (current - first >= displayMenuItems) + if (current - first >= displayMenuItems || current == last) first = current - displayMenuItems + 1; } if (current != oldCurrent || first != oldFirst) { Klaus