Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: thing's todo befor 1.0.0 final



bernd wrote:
> 
> Hi,
> 
> there is still a issue in the channel list, if you scroll the list and the
> cursor
> is on the bottom and the list entry is not a channel the cursor is not
> visible.
> 
> Regards
> Bernd Zierath

Could you please test the following patch and let me know if it fixes this?

Klaus

--- osd.c       2002/03/10 16:18:06
+++ osd.c       2002/03/24 11:07:58
@@ -288,6 +288,8 @@
   first -= MAXOSDITEMS;
   if (first < 0)
      first = current = 0;
+  if (SpecialItem(current))
+     current -= (current > 0) ? 1 : -1;
   Display();
   DisplayCurrent(true);
 }
@@ -302,6 +304,8 @@
      current = Count() - 1;
      first = Count() - MAXOSDITEMS;
      }
+  if (SpecialItem(current))
+     current += (current < Count() - 1) ? 1 : -1;
   Display();
   DisplayCurrent(true);
 }


-- 
_______________________________________________________________

Klaus Schmidinger                       Phone: +49-8635-6989-10
CadSoft Computer GmbH                   Fax:   +49-8635-6989-40
Hofmark 2                               Email:   kls@cadsoft.de
D-84568 Pleiskirchen, Germany           URL:     www.cadsoft.de
_______________________________________________________________



Home | Main Index | Thread Index