Anssi Hannula wrote: > C.Y.M wrote: > >> >> This patch also conflicts with the osdbase-maxitems.diff (used with the >> text2skin plugin). >> > > Hmm, what patch is that? Haven't heard of it. > When using text2skin, the words "Stop Recording" at the bottom of the menu are not displayed or cut off unless this patch is applied. The following patch is included with text2skin: vdr-1.3.17-osdbase-maxitems.diff But, I had to make some changed to the patch for it to apply to 1.3.24. Here is what I'm using: Regards, -------------- next part -------------- --- vdr-1.3.24/osdbase.c.orig 2005-05-23 13:43:32.000000000 -0700 +++ vdr-1.3.24/osdbase.c 2005-05-23 13:52:38.000000000 -0700 @@ -182,6 +182,7 @@ subMenu->Display(); return; } + displayMenuItems = displayMenu->MaxItems(); displayMenu->SetMessage(mtStatus, NULL); displayMenu->Clear(); cStatus::MsgOsdClear(); @@ -261,7 +262,8 @@ int last = Count() - 1; int lastOnScreen = first + displayMenuItems - 1; bool wrapped = false; - + displayMenuItems = displayMenu->MaxItems(); + // Search the next selectable item int tmpCurrent = current; do {