mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
CChannelList: fix "prev bouquet" if empty bouquets are present
also do proper wrap-around when selecting previous / next bouquet
This commit is contained in:
committed by
Jacek Jendrzej
parent
e0facfa2e0
commit
80e7f9753b
@@ -744,12 +744,13 @@ int CChannelList::show()
|
||||
if (!bouquetList->Bouquets.empty()) {
|
||||
bool found = true;
|
||||
int dir = msg == (neutrino_msg_t)g_settings.key_bouquet_up ? 1 : -1;
|
||||
int b_size = bouquetList->Bouquets.size();
|
||||
int b_size = bouquetList->Bouquets.size(); /* bigger than 0 */
|
||||
int nNext = (bouquetList->getActiveBouquetNumber() + b_size + dir) % b_size;
|
||||
if(bouquetList->Bouquets[nNext]->channelList->isEmpty() ) {
|
||||
found = false;
|
||||
int n_old = nNext;
|
||||
nNext = (nNext + b_size + dir) % b_size;
|
||||
for (int i = nNext; i < b_size; i++) {
|
||||
for (int i = nNext; i != n_old; i = (i + b_size + dir) % b_size) {
|
||||
if( !bouquetList->Bouquets[i]->channelList->isEmpty() ) {
|
||||
found = true;
|
||||
nNext = i;
|
||||
|
Reference in New Issue
Block a user