diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-21 16:24:06 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-21 16:24:06 +0200 |
commit | bf8948498d7e612b61152faeb534feb718a74bab (patch) | |
tree | 15ab1002102bc9351f20fa8ff1d8b687957bc077 | |
parent | d8aef25cbcfb43b8aacf13537148c4387ad95be8 (diff) | |
download | vdr-bf8948498d7e612b61152faeb534feb718a74bab.tar.gz vdr-bf8948498d7e612b61152faeb534feb718a74bab.tar.bz2 |
No more unnecessary display of 'normal play mode'
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | menu.c | 7 |
2 files changed, 6 insertions, 3 deletions
@@ -769,4 +769,4 @@ Video Disk Recorder Revision History (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; pressing "Ok" while the mode display is on brings up - the progress display; + the progress display; no more unnecessary display of "normal play mode". @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.124 2001/09/21 16:16:47 kls Exp $ + * $Id: menu.c 1.125 2001/09/21 16:22:15 kls Exp $ */ #include "menu.h" @@ -2424,15 +2424,18 @@ void cReplayControl::ShowMode(void) bool Play, Forward; int Speed; if (dvbApi->GetReplayMode(Play, Forward, Speed)) { + bool NormalPlay = (Play && Speed == -1); if (!visible) { + if (NormalPlay) + return; // no need to do indicate ">" unless there was a different mode displayed before // open small display Interface->Open(9, -1); Interface->Clear(); visible = modeOnly = true; } - if (modeOnly && !timeoutShow && Speed == -1 && Play) + if (modeOnly && !timeoutShow && NormalPlay) timeoutShow = time(NULL) + MODETIMEOUT; const char *Mode; if (Speed == -1) Mode = Play ? " > " : " || "; |