diff --git a/HISTORY b/HISTORY index 9afba45b..e2b5cd0d 100644 --- a/HISTORY +++ b/HISTORY @@ -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". diff --git a/menu.c b/menu.c index b2954a95..60248bf8 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.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 ? " > " : " || ";