diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-03-31 10:57:28 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-03-31 10:57:28 +0200 |
commit | 72962ccdd787d4910f340578a8b3563150f017f3 (patch) | |
tree | 99610d804030afc6b1bf04d49824d2c8ce4dd678 /menu.c | |
parent | 9bfb79e15ede5040ac42396df1135e36b12e4e77 (diff) | |
download | vdr-72962ccdd787d4910f340578a8b3563150f017f3.tar.gz vdr-72962ccdd787d4910f340578a8b3563150f017f3.tar.bz2 |
Fixed a bug in switching back the replay mode display in time shift mode
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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; |