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:
2013-03-21 11:38:40 +01:00
parent e4de9cdbdb
commit 6b95b563d9

View File

@@ -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();