summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-04-24 15:32:11 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-04-24 15:32:11 +0200
commitba70704694e879246856d6bb98be3e3d01ab0156 (patch)
tree048e718409a1cec97c8ca01828920a962e28acfa /menu.c
parent8a84f6b751f54b71f2476beef2eec10a9c919f36 (diff)
downloadvdr-ba70704694e879246856d6bb98be3e3d01ab0156.tar.gz
vdr-ba70704694e879246856d6bb98be3e3d01ab0156.tar.bz2
Improved replay progress display
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 1a26730d..2a4cfa9f 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.7 2000/04/24 09:44:27 kls Exp $
+ * $Id: menu.c 1.8 2000/04/24 15:32:11 kls Exp $
*/
#include "menu.h"
@@ -1018,7 +1018,7 @@ eOSState cMenuMain::ProcessKey(eKeys Key)
cReplayDisplay::cReplayDisplay(void)
{
Interface.Open(MenuColumns, -3);
- DvbApi.ShowProgress(true);
+ shown = DvbApi.ShowProgress(true);
}
cReplayDisplay::~cReplayDisplay()
@@ -1030,7 +1030,7 @@ eKeys cReplayDisplay::ProcessKey(eKeys Key)
{
if (!DvbApi.Replaying())
return kOk; // will turn off replay display
- DvbApi.ShowProgress();
+ shown = DvbApi.ShowProgress(!shown);
switch (Key) {
case kBegin:
case kPause: