diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-10-27 10:23:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-10-27 10:23:09 +0200 |
commit | 02b5a40539353122990dc830e4262c5c6802328c (patch) | |
tree | bb707f8974b2d45c129f43c30022aa1ae402228d /menu.c | |
parent | 407c2fb77fc263fa4ec134a6935701ca8dd28eca (diff) | |
download | vdr-02b5a40539353122990dc830e4262c5c6802328c.tar.gz vdr-02b5a40539353122990dc830e4262c5c6802328c.tar.bz2 |
Fixed closing the progress display with the 'Back' key when in trick mode and Setup.ShowReplayMode is enabled
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 3 insertions, 1 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.131 2001/10/21 14:28:14 kls Exp $ + * $Id: menu.c 1.132 2001/10/27 10:20:04 kls Exp $ */ #include "menu.h" @@ -2365,6 +2365,8 @@ cReplayControl::cReplayControl(void) cReplayControl::~cReplayControl() { Hide(); + if (Setup.ShowReplayMode) + Hide(); // the initial Hide() may have reopened the small mode display window dvbApi->StopReplay(); } |