summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-09-07 10:20:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2013-09-07 10:20:00 +0200
commit699454ad7f3589516bfcf2dc4aefaa68787ed5be (patch)
treee448000feebb778c5f4efd52ba78915bbb829a96 /menu.c
parente8fb50081973bb03083669bc8f4f3417f51b2dff (diff)
downloadvdr-699454ad7f3589516bfcf2dc4aefaa68787ed5be.tar.gz
vdr-699454ad7f3589516bfcf2dc4aefaa68787ed5be.tar.bz2
Unified the internal sequence of actions when pressing the Blue and the Back key, respectively, during replay
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/menu.c b/menu.c
index e466ae0f..ca1c7e18 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 3.3 2013/08/21 10:45:11 kls Exp $
+ * $Id: menu.c 3.4 2013/09/07 10:03:16 kls Exp $
*/
#include "menu.h"
@@ -4990,10 +4990,8 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
else
Show();
break;
- case kBack: if (Setup.DelTimeshiftRec) {
- cRecordControl* rc = cRecordControls::GetRecordControl(fileName);
- return rc && rc->InstantId() ? osEnd : osRecordings;
- }
+ case kBack: Hide();
+ Stop();
return osRecordings;
default: return osUnknown;
}