diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | menuitem.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -165,3 +165,6 @@ Version 0.1.1 - Main menu title style configurable - Maximum number of timers in main menu configurable - Added alternative main menu header icons (thanks @BooStar) +- Display grapical progress bar in every default style VDR menu, fixed + progress bar detection +- Added Channel Number in Channel Menu @@ -572,7 +572,7 @@ void cNopacityChannelMenuItem::CreatePixmapTextScroller(int totalWidth) { } void cNopacityChannelMenuItem::CreateText() { - strEntry = Channel->Name(); + strEntry = cString::sprintf("%d %s", Channel->Number(), Channel->Name()); const cSource *source = Sources.Get(Channel->Source()); if (source) strChannelSource = cString::sprintf("%s - %s", *cSource::ToString(source->Code()), source->Description()); |