diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 01c3668ee..7c0fb9461 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -762,7 +762,20 @@ int CChannelList::show() } else if ((msg == CRCInput::RC_info) || (msg == CRCInput::RC_help)) { hide(); - g_EpgData->show(chanlist[selected]->channel_id); + CChannelEvent *p_event=NULL; + if (displayNext) + { + p_event = &(chanlist[selected]->nextEvent); + } + + if(p_event && p_event->eventID) + { + g_EpgData->show(chanlist[selected]->channel_id,p_event->eventID,&(p_event->startTime)); + } + else + { + g_EpgData->show(chanlist[selected]->channel_id); + } paintHead(); paint(); } else {