mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
CChannelList: remove details line on changing pages
details line was not completely killed changed page.
Origin commit data
------------------
Branch: ni/coolstream
Commit: 407d9fe800
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-03-21 (Thu, 21 Mar 2013)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -740,6 +740,8 @@ int CChannelList::show()
|
||||
actzap = updateSelection(new_selected);
|
||||
}
|
||||
else if (msg == (neutrino_msg_t)g_settings.key_bouquet_up) {
|
||||
if (dline)
|
||||
dline->kill(); //kill details line on change to next page
|
||||
if (!bouquetList->Bouquets.empty()) {
|
||||
bool found = true;
|
||||
uint32_t nNext = (bouquetList->getActiveBouquetNumber()+1) % bouquetList->Bouquets.size();
|
||||
@@ -762,6 +764,8 @@ int CChannelList::show()
|
||||
}
|
||||
}
|
||||
else if (msg == (neutrino_msg_t)g_settings.key_bouquet_down) {
|
||||
if (dline)
|
||||
dline->kill(); //kill details line on change to previous page
|
||||
if (!bouquetList->Bouquets.empty()) {
|
||||
bool found = true;
|
||||
int nNext = (bouquetList->getActiveBouquetNumber()+bouquetList->Bouquets.size()-1) % bouquetList->Bouquets.size();
|
||||
|
Reference in New Issue
Block a user