mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
revert commit f4ae5e17ce
This commit is contained in:
committed by
[CST] Focus
parent
230096c050
commit
6d56cc0696
@@ -754,15 +754,6 @@ int CChannelList::show()
|
||||
if(bouquetList->Bouquets[nNext]->channelList->isEmpty() ) {
|
||||
found = false;
|
||||
nNext = (nNext + b_size + dir) % b_size;
|
||||
if(msg == (neutrino_msg_t)g_settings.key_bouquet_down){
|
||||
for (int i = nNext; i > 0; i--) {
|
||||
if( !bouquetList->Bouquets[i]->channelList->isEmpty() ) {
|
||||
found = true;
|
||||
nNext = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}else{
|
||||
for (int i = nNext; i < b_size; i++) {
|
||||
if( !bouquetList->Bouquets[i]->channelList->isEmpty() ) {
|
||||
found = true;
|
||||
@@ -771,7 +762,6 @@ int CChannelList::show()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(found) {
|
||||
bouquetList->activateBouquet(nNext, false);
|
||||
res = bouquetList->showChannelList();
|
||||
|
Reference in New Issue
Block a user