From c68d7a89ea7003ac9e20f2932cda174861ad6d40 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Thu, 26 Sep 2013 19:46:25 +0400 Subject: [PATCH] gui/channellist.cpp: fix reset 'new' channel flag Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/173403120f9f9c00e781cdbd956ca4de77429046 Author: [CST] Focus Date: 2013-09-26 (Thu, 26 Sep 2013) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/channellist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index dddbb7eac..ae7d80086 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -475,7 +475,7 @@ int CChannelList::doChannelMenu(void) break; case 4: // reset new - chanlist[selected]->flags &= ~CZapitChannel::NEW; + chanlist[selected]->flags = CZapitChannel::UPDATED; CServiceManager::getInstance()->SetServicesChanged(true); /* if make_new_list == ON, signal to re-init services */ if(g_settings.make_new_list) @@ -483,7 +483,7 @@ int CChannelList::doChannelMenu(void) break; case 5: // reset all new for (unsigned int j = 0 ; j < chanlist.size(); j++) { - chanlist[j]->flags &= ~CZapitChannel::NEW; + chanlist[j]->flags = CZapitChannel::UPDATED; } if (g_settings.make_new_list) return 2;