diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-10-03 10:11:15 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-10-03 10:11:15 +0200 |
commit | 1b7a32472ec398f81be6e32648338b3f7e4268fa (patch) | |
tree | e2524cdc3a2ed0a14e696984b06a88b9085cc70b /vdr.c | |
parent | f1000d75c0201ff90b8daf2a39c8390f432c66a5 (diff) | |
download | vdr-1b7a32472ec398f81be6e32648338b3f7e4268fa.tar.gz vdr-1b7a32472ec398f81be6e32648338b3f7e4268fa.tar.bz2 |
Pressing the Play key during normal live viewing mode now opens the Recordings menu if there is no "last viewed" recording
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 2.40 2012/09/24 12:43:04 kls Exp $ + * $Id: vdr.c 2.41 2012/10/03 09:58:46 kls Exp $ */ #include <getopt.h> @@ -1238,6 +1238,8 @@ int main(int argc, char *argv[]) cControl::Shutdown(); cControl::Launch(new cReplayControl); } + else + DirectMainFunction(osRecordings); // no last viewed recording, so enter the Recordings menu break; default: break; } |