diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | displayreplay.c | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -6,6 +6,7 @@ VDR Plugin 'skinflatplus' Revision History - [fix] recording menu, total count size - [fix] timer widget - [fix] only draw widgets if enabled +- [fix] stop dimm on pause when jump between marks - [update] timer widget new options to select which timer to show (recording, active) diff --git a/displayreplay.c b/displayreplay.c index 479afe68..427ed852 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -197,6 +197,11 @@ void cFlatDisplayReplay::SetMode(bool Play, bool Forward, int Speed) { } void cFlatDisplayReplay::SetProgress(int Current, int Total) { + if( dimmActive ) { + dimmPixmap->Fill(clrTransparent); + Flush(); + } + if( modeOnly ) return; ProgressShown = true; |