From 699454ad7f3589516bfcf2dc4aefaa68787ed5be Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 7 Sep 2013 10:20:00 +0200 Subject: [PATCH] Unified the internal sequence of actions when pressing the Blue and the Back key, respectively, during replay --- CONTRIBUTORS | 4 ++++ HISTORY | 4 +++- menu.c | 8 +++----- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4a8eb604..9860f677 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3174,3 +3174,7 @@ Seppo Ingalsuo Manfred Völkel for suggesting to make all bonded devices (except for the master) turn off their LNB power completely to avoid problems when receiving vertically polarized transponders + +Thomas Maass + for reporting a difference in the internal sequence of actions when pressing the Blue + and the Back key, respectively, during replay diff --git a/HISTORY b/HISTORY index d6a3ee4a..bf98a97e 100644 --- a/HISTORY +++ b/HISTORY @@ -7920,7 +7920,7 @@ Video Disk Recorder Revision History - Fixed cleaning up old EPG events in case no epg data file is given (reported by Dave Pickles). -2013-09-06: Version 2.1.2 +2013-09-07: Version 2.1.2 - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Fixed displaying DVB subtitles (thanks to Rolf Ahrenberg for helping to debug and @@ -7939,3 +7939,5 @@ Video Disk Recorder Revision History - Updated the Estonian OSD texts (thanks to Arthur Konovalov). - Fixed cleaning up old EPG events in case no epg data file is given (reported by Dave Pickles). +- Unified the internal sequence of actions when pressing the Blue and the Back key, + respectively, during replay (reported by Thomas Maass). 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; }