summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-09-21 16:18:51 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-09-21 16:18:51 +0200
commitd8aef25cbcfb43b8aacf13537148c4387ad95be8 (patch)
treeb383bb5c6717e97fd86d5afdbd9aa0a284d2bb32
parenta77360a1b6efabbda5c51c48dced2bceda37a5b6 (diff)
downloadvdr-d8aef25cbcfb43b8aacf13537148c4387ad95be8.tar.gz
vdr-d8aef25cbcfb43b8aacf13537148c4387ad95be8.tar.bz2
Pressing 'Ok' while the mode display is on brings up the progress display
-rw-r--r--HISTORY3
-rw-r--r--menu.c10
2 files changed, 10 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 108c8c34..9afba45b 100644
--- a/HISTORY
+++ b/HISTORY
@@ -768,4 +768,5 @@ Video Disk Recorder Revision History
no more replay mode display when pressing the "Green" or "Yellow" button
(Skip +/-60s); fixed timeout when pressing '0' to set an editing mark while
the progress display is not shown; mode display is shown after progress
- display is closed;
+ display is closed; pressing "Ok" while the mode display is on brings up
+ the progress display;
diff --git a/menu.c b/menu.c
index d15dc192..b2954a95 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.123 2001/09/21 16:03:48 kls Exp $
+ * $Id: menu.c 1.124 2001/09/21 16:16:47 kls Exp $
*/
#include "menu.h"
@@ -2386,6 +2386,8 @@ void cReplayControl::ClearLastReplayed(const char *FileName)
void cReplayControl::Show(int Seconds)
{
+ if (modeOnly)
+ Hide();
if (!visible) {
shown = ShowProgress(true);
timeoutShow = (shown && Seconds > 0) ? time(NULL) + Seconds : 0;
@@ -2725,7 +2727,11 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
switch (Key) {
// Menu control:
case kMenu: Hide(); return osMenu; // allow direct switching to menu
- case kOk: visible ? Hide() : Show(); break;
+ case kOk: if (visible && !modeOnly)
+ Hide();
+ else
+ Show();
+ break;
case kBack: return osRecordings;
default: return osUnknown;
}