summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-10-08 15:08:26 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-10-08 15:08:26 +0200
commit9faf7a51e5d67f06e035705cb6e7420c59724341 (patch)
treefccc7cb90c3222b2fa2495a63426aed5b5e9f504 /vdr.c
parenta1a52fe11f95e2a3a182cc374ddc62c52d1dabd3 (diff)
downloadvdr-9faf7a51e5d67f06e035705cb6e7420c59724341.tar.gz
vdr-9faf7a51e5d67f06e035705cb6e7420c59724341.tar.bz2
Pressing 'Back' in replay mode brings up 'Recordings' menu
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/vdr.c b/vdr.c
index d527270e..c8cabb0b 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/people/kls/vdr
*
- * $Id: vdr.c 1.38 2000/10/08 12:24:30 kls Exp $
+ * $Id: vdr.c 1.39 2000/10/08 14:49:25 kls Exp $
*/
#include <getopt.h>
@@ -228,6 +228,11 @@ int main(int argc, char *argv[])
if (!cRecordControls::Start())
Interface->Error("No free DVB device to record!");
break;
+ case osRecordings:
+ DELETENULL(Menu);
+ DELETENULL(ReplayControl);
+ Menu = new cMenuRecordings;
+ break;
case osReplay: DELETENULL(Menu);
DELETENULL(ReplayControl);
ReplayControl = new cReplayControl;