From patchwork Tue Mar 15 23:48:33 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steffen Beyer X-Patchwork-Id: 11808 Received: from teralink.net ([82.165.25.23]) by www.linuxtv.org with esmtp (Exim 4.34) id 1DBLm0-0000fz-Qq for vdr@linuxtv.org; Wed, 16 Mar 2005 00:48:28 +0100 Received: from p5482e413.dip.t-dialin.net ([84.130.228.19] helo=necessity.reactor.de) by teralink.net with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DBLmA-00027b-6S for vdr@linuxtv.org; Wed, 16 Mar 2005 00:48:38 +0100 Received: from elephant.reactor.local ([192.168.80.4] helo=elephant) by necessity.reactor.de with smtp (Exim 3.36 #1) id 1DBLm5-0004yO-00 for vdr@linuxtv.org; Wed, 16 Mar 2005 00:48:33 +0100 Date: Wed, 16 Mar 2005 00:48:33 +0100 From: Steffen Beyer To: vdr@linuxtv.org Message-Id: <20050316004833.14ec4da5.cpunk@reactor.de> X-Mailer: Sylpheed version 1.0.0 (GTK+ 1.2.10; i386-pc-linux-gnu) Mime-Version: 1.0 Subject: [vdr] [PATCH] vdr-1.3.22 bugfix: delete recording above directory X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vdr@linuxtv.org List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Mar 2005 23:48:29 -0000 Status: O X-Status: X-Keywords: X-UID: 781 Hello, following problem: when deleting a recording which is followed by a directory in the list of recordings, the directory gets the focus but the help at the bottom of the screen stays unchanged and still shows four options, instead of only "open". It is necessary to update the help row between delete and OSD update, patch attached. Regards, --- menu.c.orig 2005-03-16 00:25:16.000000000 +0100 +++ menu.c 2005-03-16 00:27:19.960873400 +0100 @@ -1619,6 +1619,7 @@ cReplayControl::ClearLastReplayed(ri->FileName()); cOsdMenu::Del(Current()); Recordings.Del(recording); + SetHelpKeys(); Display(); if (!Count()) return osBack;