diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-03 15:03:09 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-03 15:03:09 +0100 |
commit | f35e4acf887a7fa065d0c2addc0a33a3885b1ae0 (patch) | |
tree | 90b324e1dadf9be75aa87defdea302ce9d8d24c9 /menu.c | |
parent | 31cca0c85bccb50b36706954afc5266d164347dd (diff) | |
download | vdr-f35e4acf887a7fa065d0c2addc0a33a3885b1ae0.tar.gz vdr-f35e4acf887a7fa065d0c2addc0a33a3885b1ae0.tar.bz2 |
Toggling a mark now restarts the timeout of the replay progress display
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 5 |
1 files changed, 4 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 2.40 2012/03/03 14:47:32 kls Exp $ + * $Id: menu.c 2.41 2012/03/03 15:00:41 kls Exp $ */ #include "menu.h" @@ -4513,6 +4513,8 @@ void cReplayControl::ShowTimed(int Seconds) shown = ShowProgress(true); timeoutShow = (shown && Seconds > 0) ? time(NULL) + Seconds : 0; } + else if (timeoutShow && Seconds > 0) + timeoutShow = time(NULL) + Seconds; } void cReplayControl::Show(void) @@ -4531,6 +4533,7 @@ void cReplayControl::Hide(void) lastPlay = lastForward = false; lastSpeed = -2; // an invalid value timeSearchActive = false; + timeoutShow = 0; } } |