diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index 8d7925b88..96346261e 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -1189,10 +1189,7 @@ void CMoviePlayerGui::PlayFileEnd(bool restore) void CMoviePlayerGui::callInfoViewer() { if (timeshift != TSHIFT_MODE_OFF) { - g_InfoViewer->showTitle(CNeutrinoApp::getInstance()->channelList->getActiveChannelNumber(), - CNeutrinoApp::getInstance()->channelList->getActiveChannelName(), - CNeutrinoApp::getInstance()->channelList->getActiveSatellitePosition(), - CNeutrinoApp::getInstance()->channelList->getActiveChannel_ChannelID()); + g_InfoViewer->showTitle(CNeutrinoApp::getInstance()->channelList->getActiveChannel()); return; } diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 883805331..3da99f479 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -2140,16 +2140,7 @@ void CNeutrinoApp::numericZap(int msg) void CNeutrinoApp::showInfo() { StopSubtitles(); - - char *pname = NULL; - if(g_settings.infobar_show_channeldesc){ - CZapitChannel* channel = channelList->getActiveChannel(); - if(channel->pname){ - pname = channel->pname; - } - } - - g_InfoViewer->showTitle(channelList->getActiveChannelNumber(), channelList->getActiveChannelName(), channelList->getActiveSatellitePosition(), channelList->getActiveChannel_ChannelID(), false, 0, pname); + g_InfoViewer->showTitle(channelList->getActiveChannel()); StartSubtitles(); }