diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | displaymenu.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -3,6 +3,7 @@ VDR Plugin 'skinflatplus' Revision History 2014-XX-XX: Version 0.5.1 - [fix] topbar number recordings +- [fix] recording menu, total count size - [fix] timer widget - [update] timer widget new options to select which timer to show (recording, active) diff --git a/displaymenu.c b/displaymenu.c index 902ed562..43284011 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -2037,8 +2037,8 @@ bool cFlatDisplayMenu::SetItemRecording(const cRecording *Recording, int Index, Top += fontHeight; buffer = cString::sprintf(" %d", Total); - menuPixmap->DrawText(cPoint(Left, Top), buffer, ColorFg, ColorBg, fontSml, fontSml->Width(" 999"), fontSmlHeight, taRight); - Left += fontSml->Width(" 999 "); + menuPixmap->DrawText(cPoint(Left, Top), buffer, ColorFg, ColorBg, fontSml, fontSml->Width(" 9999"), fontSmlHeight, taRight); + Left += fontSml->Width(" 9999 "); if( imgRecNewSml ) menuIconsPixmap->DrawImage( cPoint(Left, Top), *imgRecNewSml ); |