diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | baserender.c | 5 |
2 files changed, 3 insertions, 3 deletions
@@ -9,6 +9,7 @@ VDR Plugin 'skinflatplus' Revision History - [fix] uninitialized pointer in displayrecoding (crash in plex-plugin and others) (thanks chriszero) - [fix] recordings name in recording menu (thanks to Delekhan @ vdr-portal.de) - [fix] dvb widget - discard not used and discard unknown +- [fix] display replay - progressbar if there are no marks - [update] default themes inverted style, selected item fore color is now back color - [update] disk usage icons with 32 sections instead of 16, thanks to MegaV0lt diff --git a/baserender.c b/baserender.c index 56fcc0e1..ec91910e 100644 --- a/baserender.c +++ b/baserender.c @@ -746,7 +746,6 @@ void cFlatBaseRender::ProgressBarDrawRaw(cPixmap *Pixmap, cPixmap *PixmapBg, cRe else Pixmap->DrawRectangle(cRect( rect.Left(), rect.Top(), rect.Width(), rect.Height()), clrTransparent); } - switch( Type ) { case 0: // small line + big line { @@ -924,14 +923,14 @@ void cFlatBaseRender::ProgressBarDrawMarks(int Current, int Total, const cMarks int big = Config.decorProgressReplaySize - sml*2 - 2; if( !Marks ) { - progressBarColorFg = progressBarColorBarCurFg; + //progressBarColorFg = progressBarColorBarFg; progressBarColorBarFg = progressBarColorBarCurFg; ProgressBarDraw(Current, Total); return; } if( !Marks->First() ) { - progressBarColorFg = progressBarColorBarCurFg; + //progressBarColorFg = progressBarColorBarCurFg; progressBarColorBarFg = progressBarColorBarCurFg; ProgressBarDraw(Current, Total); |