summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-09-09 17:59:31 +0200
committerlouis <louis.braun@gmx.de>2013-09-09 17:59:31 +0200
commit2a5df8c57e54523371bc9b3b79d3182759c4a967 (patch)
treeb903c9e2665b59a6f33c169513abcd05d2cd1fff
parent200f120a0705dc13b24937df6a233c9d0544ed8a (diff)
downloadskin-nopacity-2a5df8c57e54523371bc9b3b79d3182759c4a967.tar.gz
skin-nopacity-2a5df8c57e54523371bc9b3b79d3182759c4a967.tar.bz2
Added channel number in display of reruns in detailed EPG view (closes Feature 1402)
-rw-r--r--HISTORY2
-rw-r--r--menudetailview.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index da8ec06..dd0075c 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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();