summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-03-31 10:57:28 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-03-31 10:57:28 +0200
commit72962ccdd787d4910f340578a8b3563150f017f3 (patch)
tree99610d804030afc6b1bf04d49824d2c8ce4dd678
parent9bfb79e15ede5040ac42396df1135e36b12e4e77 (diff)
downloadvdr-72962ccdd787d4910f340578a8b3563150f017f3.tar.gz
vdr-72962ccdd787d4910f340578a8b3563150f017f3.tar.bz2
Fixed a bug in switching back the replay mode display in time shift mode
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY2
-rw-r--r--menu.c6
3 files changed, 7 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 7f0b54ef..5e7b5acf 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -233,6 +233,7 @@ Mirko Günther <mi.guenther@ib-helms.de>
Achim Lange <Achim_Lange@t-online.de>
for replacing 'killproc' with 'killall' in 'runvdr' to make it work on Debian
+ for reporting a bug in switching back the replay mode display in time shift mode
Bernd Zierath <b.zierath@ebv.com>
for helping to debug scrolling the "Channels" menu in case the cursor ends up on
diff --git a/HISTORY b/HISTORY
index 2f66c529..f62227e8 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1147,3 +1147,5 @@ Video Disk Recorder Revision History
to their appropriate system locations.
- Automatic hotkey assignment is now suppressed if the first entry in
commands.conf starts with a digit in the range '1'...'9', followed by a blank.
+- Fixed a bug in switching back the replay mode display in time shift mode
+ (thanks to Achim Lange for reporting this one).
diff --git a/menu.c b/menu.c
index e87b0ce7..503beb47 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.176 2002/03/29 10:49:22 kls Exp $
+ * $Id: menu.c 1.177 2002/03/31 10:46:24 kls Exp $
*/
#include "menu.h"
@@ -3296,7 +3296,9 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
ShowMode();
timeoutShow = 0;
}
- else if (!modeOnly)
+ else if (modeOnly)
+ ShowMode();
+ else
shown = ShowProgress(!shown) || shown;
}
bool DisplayedFrames = displayFrames;