summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-03-20 11:27:44 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-03-20 11:27:44 +0100
commit456ded045c228accff613c0ebaf7833d8164e3ec (patch)
treef526ccd563ff54a0f25e53db824e11227c978e58
parentce0e97eb6501ecea1c6be45bcc99ce51d34262c9 (diff)
downloadvdr-456ded045c228accff613c0ebaf7833d8164e3ec.tar.gz
vdr-456ded045c228accff613c0ebaf7833d8164e3ec.tar.bz2
Fixed setting the colored button help after deleting a recording in case the next menu entry is a directory
-rw-r--r--CONTRIBUTORS4
-rw-r--r--HISTORY2
-rw-r--r--menu.c3
3 files changed, 8 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 5193476e..fe0ef222 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -1302,3 +1302,7 @@ Roman Krenický <free-rtk@gmx.de>
Ville Skyttä <ville.skytta@iki.fi>
for reporting several compiler warnings in gcc 4.0
+
+Steffen Beyer <cpunk@reactor.de>
+ for fixing setting the colored button help after deleting a recording in case the next
+ menu entry is a directory
diff --git a/HISTORY b/HISTORY
index 4619590b..7d04c258 100644
--- a/HISTORY
+++ b/HISTORY
@@ -3467,3 +3467,5 @@ Video Disk Recorder Revision History
- Some fixes to avoid compiler warnings in gcc 4.0 (thanks to Ville Skyttä for reporting
these).
- Single shot timers are now reliably deleted when they have expired.
+- Fixed setting the colored button help after deleting a recording in case the next
+ menu entry is a directory (thanks to Steffen Beyer).
diff --git a/menu.c b/menu.c
index 6e2ba778..7abd0b19 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.346 2005/03/20 11:06:56 kls Exp $
+ * $Id: menu.c 1.347 2005/03/20 11:26:00 kls Exp $
*/
#include "menu.h"
@@ -1633,6 +1633,7 @@ eOSState cMenuRecordings::Delete(void)
cReplayControl::ClearLastReplayed(ri->FileName());
cOsdMenu::Del(Current());
Recordings.Del(recording);
+ SetHelpKeys();
Display();
if (!Count())
return osBack;