diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | menudetailview.c | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -241,3 +241,5 @@ Version 0.1.4 channels menu (closes Feature 1377) - Added name of search timer which created recording in detailed recording information (closes Feature 1401) +- Added channel number in display of reruns in detailed EPG view + (closes Feature 1402) diff --git a/menudetailview.c b/menudetailview.c index d23cc7d..66a1428 100644 --- a/menudetailview.c +++ b/menudetailview.c @@ -521,8 +521,10 @@ void cNopacityMenuDetailEventView::LoadReruns(void) { sstrReruns << "- " << *DayDateTime(r->event->StartTime()); cChannel *channel = Channels.GetByChannelID(r->event->ChannelID(), true, true); - if (channel) + if (channel) { + sstrReruns << ", " << channel->Number() << "."; sstrReruns << " " << channel->ShortName(true); + } sstrReruns << ": " << r->event->Title(); if (!isempty(r->event->ShortText())) sstrReruns << "~" << r->event->ShortText(); |