diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-10-20 11:23:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-10-20 11:23:27 +0200 |
commit | e3c09115fe66a8146f742807915144eafc6b8fd5 (patch) | |
tree | 78472a080f9306ec3cca7c3a5538be7fc3a80af1 /vdr.c | |
parent | 60ee85bf172c43a4104203b6dfacb3353e606e48 (diff) | |
download | vdr-e3c09115fe66a8146f742807915144eafc6b8fd5.tar.gz vdr-e3c09115fe66a8146f742807915144eafc6b8fd5.tar.bz2 |
The menu timeout now also works when pressing the 'Back' button during replay to enter the 'Recordings' menu
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/people/kls/vdr * - * $Id: vdr.c 1.85 2001/10/20 10:26:54 kls Exp $ + * $Id: vdr.c 1.86 2001/10/20 11:18:38 kls Exp $ */ #include <getopt.h> @@ -408,7 +408,7 @@ int main(int argc, char *argv[]) case osRecordings: DELETENULL(Menu); DELETENULL(ReplayControl); - Menu = new cMenuRecordings; + Menu = new cMenuMain(ReplayControl, osRecordings); break; case osReplay: DELETENULL(Menu); DELETENULL(ReplayControl); @@ -417,7 +417,7 @@ int main(int argc, char *argv[]) #ifdef DVDSUPPORT case osDVD: DELETENULL(Menu); DELETENULL(ReplayControl); - Menu = new cMenuDVD; + Menu = new cMenuMain(ReplayControl, osDVD); break; #endif //DVDSUPPORT case osStopReplay: |