- eventlist: allow to disable epgplus

This commit is contained in:
svenhoefer
2016-08-04 09:44:36 +02:00
parent f9a8b5a656
commit 5837b922b1
8 changed files with 23 additions and 4 deletions

View File

@@ -601,10 +601,13 @@ int CEventList::exec(const t_channel_id channel_id, const std::string& channelna
}
else if (msg == CRCInput::RC_epg)
{
hide();
CEPGplusHandler eplus;
eplus.exec(NULL, "");
loop = false;
if (g_settings.eventlist_epgplus)
{
hide();
CEPGplusHandler eplus;
eplus.exec(NULL, "");
loop = false;
}
}
else if (msg==CRCInput::RC_help || msg==CRCInput::RC_ok || msg==CRCInput::RC_info)
{