From 6b95b563d92b51f4c7165a658124938aa6ec98a0 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Thu, 21 Mar 2013 11:38:40 +0100 Subject: [PATCH] CChannelList: remove details line on changing pages details line was not completely killed changed page. Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/407d9fe800f70b74272a0ddf2a1382e04f5417c8 Author: Thilo Graf Date: 2013-03-21 (Thu, 21 Mar 2013) ------------------ This commit was generated by Migit --- src/gui/channellist.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 54dbc5561..f14529d38 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -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();