This commit is contained in:
Jacek Jendrzej
2013-04-06 22:13:47 +02:00
committed by [CST] Focus
parent 230096c050
commit 6d56cc0696

View File

@@ -754,21 +754,11 @@ int CChannelList::show()
if(bouquetList->Bouquets[nNext]->channelList->isEmpty() ) { if(bouquetList->Bouquets[nNext]->channelList->isEmpty() ) {
found = false; found = false;
nNext = (nNext + b_size + dir) % b_size; nNext = (nNext + b_size + dir) % b_size;
if(msg == (neutrino_msg_t)g_settings.key_bouquet_down){ for (int i = nNext; i < b_size; i++) {
for (int i = nNext; i > 0; i--) { if( !bouquetList->Bouquets[i]->channelList->isEmpty() ) {
if( !bouquetList->Bouquets[i]->channelList->isEmpty() ) { found = true;
found = true; nNext = i;
nNext = i; break;
break;
}
}
}else{
for (int i = nNext; i < b_size; i++) {
if( !bouquetList->Bouquets[i]->channelList->isEmpty() ) {
found = true;
nNext = i;
break;
}
} }
} }
} }