mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 09:51:13 +02:00
ChannelList::quickZap -record mode- should zap if possible, else display transponderlist
Origin commit data
------------------
Branch: ni/coolstream
Commit: a01551d360
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2013-05-25 (Sat, 25 May 2013)
Origin message was:
------------------
ChannelList::quickZap -record mode- should zap if possible, else display transponderlist
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1956,16 +1956,23 @@ void CNeutrinoApp::quickZap(int msg)
|
||||
|
||||
StopSubtitles();
|
||||
printf("CNeutrinoApp::quickZap haveFreeFrontend %d\n", CFEManager::getInstance()->haveFreeFrontend());
|
||||
#if 0
|
||||
if(!CFEManager::getInstance()->haveFreeFrontend())
|
||||
{
|
||||
res = channelList->numericZap(g_settings.key_zaphistory);
|
||||
StartSubtitles(res < 0);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
bool ret;
|
||||
if(!bouquetList->Bouquets.empty())
|
||||
bouquetList->Bouquets[bouquetList->getActiveBouquetNumber()]->channelList->quickZap(msg, g_settings.zap_cycle);
|
||||
ret = bouquetList->Bouquets[bouquetList->getActiveBouquetNumber()]->channelList->quickZap(msg, g_settings.zap_cycle);
|
||||
else
|
||||
channelList->quickZap(msg);
|
||||
ret = channelList->quickZap(msg);
|
||||
if (!ret) {
|
||||
res = channelList->numericZap(g_settings.key_zaphistory);
|
||||
StartSubtitles(res < 0);
|
||||
}
|
||||
}
|
||||
|
||||
void CNeutrinoApp::numericZap(int msg)
|
||||
|
Reference in New Issue
Block a user