diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-21 16:07:22 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-21 16:07:22 +0200 |
commit | a77360a1b6efabbda5c51c48dced2bceda37a5b6 (patch) | |
tree | 776efa9ebae00afcf69b99df5efffd44d558261b | |
parent | 7fc8b39f430c5942a6d1f98f9177a2c969b33e42 (diff) | |
download | vdr-a77360a1b6efabbda5c51c48dced2bceda37a5b6.tar.gz vdr-a77360a1b6efabbda5c51c48dced2bceda37a5b6.tar.bz2 |
Mode display is shown after progress display is closed
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | menu.c | 8 |
2 files changed, 8 insertions, 3 deletions
@@ -767,4 +767,5 @@ Video Disk Recorder Revision History - Several fixes to the replay mode display (thanks to Stefan Huelswitt): 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; + the progress display is not shown; mode display is shown after progress + display is closed; @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.122 2001/09/21 15:46:21 kls Exp $ + * $Id: menu.c 1.123 2001/09/21 16:03:48 kls Exp $ */ #include "menu.h" @@ -2396,7 +2396,11 @@ void cReplayControl::Hide(void) { if (visible) { Interface->Close(); - needsFastResponse = visible = modeOnly = false; + needsFastResponse = visible = false; + if (!modeOnly) + ShowMode(); + else + modeOnly = false; } } |