From patchwork Sun Jun 12 15:01:58 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Klaus Schmidinger X-Patchwork-Id: 11911 Received: from tiger.cadsoft.de ([217.7.101.210]) by www.linuxtv.org with esmtp (Exim 4.34) id 1DhTyO-0008Er-UO for vdr@linuxtv.org; Sun, 12 Jun 2005 17:02:04 +0200 Received: from raven.cadsoft.de (raven.cadsoft.de [217.7.101.211]) by tiger.cadsoft.de (8.12.7/8.12.7) with ESMTP id j5CF20MC005135 for ; Sun, 12 Jun 2005 17:02:00 +0200 Received: from [192.168.100.10] (hawk.cadsoft.de [192.168.100.10]) by raven.cadsoft.de (8.13.3/8.13.3) with ESMTP id j5CF1xjp021882 for ; Sun, 12 Jun 2005 17:02:00 +0200 Message-ID: <42AC4E66.20003@cadsoft.de> Date: Sun, 12 Jun 2005 17:01:58 +0200 From: Klaus Schmidinger Organization: CadSoft Computer GmbH User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050317) X-Accept-Language: en MIME-Version: 1.0 To: vdr@linuxtv.org Subject: Re: [vdr] VDR developer version 1.3.26 References: <42AC4846.4040201@cadsoft.de> In-Reply-To: <42AC4846.4040201@cadsoft.de> X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2005 15:02:05 -0000 Status: O X-Status: X-Keywords: X-UID: 2990 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: Klaus --- 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) {