From patchwork Sun Jun 25 08:41:50 2006 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Regel X-Patchwork-Id: 12347 Received: from mail.gmx.net ([213.165.64.21]) by www.linuxtv.org with smtp (Exim 4.50) id 1FuQCE-0002vQ-Sz for vdr@linuxtv.org; Sun, 25 Jun 2006 10:42:22 +0200 Received: (qmail invoked by alias); 25 Jun 2006 08:41:50 -0000 Received: from p54B8C747.dip0.t-ipconnect.de (EHLO [192.168.0.25]) [84.184.199.71] by mail.gmx.net (mp035) with SMTP; 25 Jun 2006 10:41:50 +0200 X-Authenticated: #126152 Message-ID: <449E4C4E.9000603@gmx.de> Date: Sun, 25 Jun 2006 10:41:50 +0200 From: Andreas Regel User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Klaus Schmidinger's VDR X-Y-GMX-Trusted: 0 Subject: [vdr] wrong behaviour when mixing channel group selection and channel number entering X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 08:42:23 -0000 Status: O X-Status: X-Keywords: X-UID: 9926 Hi, I found a bug in vdr 1.4.1 with maintenance patch 1, that occurs when doing the following: 1. select a channel group using left/right keys 2. when the channel display is still open enter a channel number 3. wait until entered channel is tuned 4. press ok to remove window -> now the first channel in the previously selected group is tuned which is not the expected behaviour. attached patch fixes the problem Best regards, Andreas --- menu.c.org 2006-06-25 10:33:23.000000000 +0200 +++ menu.c 2006-06-25 10:34:19.000000000 +0200 @@ -3170,6 +3170,7 @@ return osEnd; } case k1 ... k9: + group = -1; if (number >= 0) { if (number > Channels.MaxNumber()) number = Key - k0;