gui/channellist.cpp: use CNeutrinoApp::StartPip

Origin commit data
------------------
Branch: ni/coolstream
Commit: d2472e64cf
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-03-13 (Wed, 13 Mar 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2013-03-13 16:26:59 +04:00
parent adbf7c1285
commit a1fd277cc1

View File

@@ -785,14 +785,14 @@ int CChannelList::show()
}
#ifdef ENABLE_PIP
else if ( msg == CRCInput::RC_play) {
if(SameTP() && CRecordManager::getInstance()->GetRecordMode(chanlist[selected]->channel_id) == CRecordManager::RECMODE_OFF) {
if(SameTP()) {
if (CZapit::getInstance()->GetPipChannelID() == chanlist[selected]->getChannelID()) {
g_Zapit->stopPip();
paint();
} else {
if (!g_Zapit->zapTo_pip(chanlist[selected]->getChannelID()))
DisplayErrorMessage(g_Locale->getText(LOCALE_VIDEOMENU_PIP_ERROR));
if(CNeutrinoApp::getInstance()->StartPip(chanlist[selected]->getChannelID()))
paint();
}
paint();
}
}
#endif