diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-10-08 15:08:26 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-10-08 15:08:26 +0200 |
commit | 9faf7a51e5d67f06e035705cb6e7420c59724341 (patch) | |
tree | fccc7cb90c3222b2fa2495a63426aed5b5e9f504 /vdr.c | |
parent | a1a52fe11f95e2a3a182cc374ddc62c52d1dabd3 (diff) | |
download | vdr-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.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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; |