From ff3c833ddd0df1b126bff8e75b11d818e39dfd99 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Wed, 9 Oct 2013 19:57:55 +0200 Subject: [PATCH] CChannelList: fix color of inactive channel in bouquets on active quickzap mode supplement to 468cdc083596918a4ad6da62c77d4f50baf2fb08 see also: http://www.dbox2world.net/index.php?page=Thread&postID=157903#post157903 Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/f6d04bfbba2c1a9eb253f44e90585f94682859d7 Author: Thilo Graf Date: 2013-10-09 (Wed, 09 Oct 2013) ------------------ This commit was generated by Migit --- src/gui/channellist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 35bbebedd..990205fa4 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -1910,7 +1910,7 @@ void CChannelList::paintItem(int pos, const bool firstpaint) c_rad_small = RADIUS_LARGE; paintbuttons = true; } - else if (getKey(curr) == CNeutrinoApp::getInstance()->channelList->getActiveChannelNumber()) + else if (getKey(curr) == CNeutrinoApp::getInstance()->channelList->getActiveChannelNumber() && new_zap_mode != 2/*active*/) { color = !displayNext ? COL_MENUCONTENT_TEXT : COL_MENUCONTENTINACTIVE_TEXT; bgcolor = !displayNext ? COL_MENUCONTENT_PLUS_1 : COL_MENUCONTENTINACTIVE_PLUS_0;