summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-10-19 14:22:03 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-10-19 14:22:03 +0200
commiteeaa969186650ed419404a76453140a9c91f47d1 (patch)
tree0a19b41263d5f813932e38e5f18c2d6480158dc5 /menu.c
parenteca4c9fcea9f80390f467f726bb7893aca9807da (diff)
downloadvdr-eeaa969186650ed419404a76453140a9c91f47d1.tar.gz
vdr-eeaa969186650ed419404a76453140a9c91f47d1.tar.bz2
The "Play" key now starts replay of the selected recording in the Recordings menu
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/menu.c b/menu.c
index 853d1e76..d01bc4cb 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.463 2007/10/13 10:10:20 kls Exp $
+ * $Id: menu.c 1.464 2007/10/19 14:20:15 kls Exp $
*/
#include "menu.h"
@@ -2107,6 +2107,7 @@ eOSState cMenuRecordings::ProcessKey(eKeys Key)
if (state == osUnknown) {
switch (Key) {
+ case kPlay:
case kOk: return Play();
case kRed: return (helpKeys > 1 && RecordingCommands.Count()) ? Commands() : Play();
case kGreen: return Rewind();