gui/bouquetlist.cpp: fix inactive color when called to add channel to bouquet

Origin commit data
------------------
Commit: 040b2a958e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-05 (Wed, 05 Mar 2014)
This commit is contained in:
[CST] Focus
2014-03-05 12:27:22 +04:00
parent e47eb1a1f7
commit a18f20fbd6

View File

@@ -570,7 +570,7 @@ void CBouquetList::paintItem(int pos)
if(npos < (int) Bouquets.size())
CVFD::getInstance()->showMenuText(0, lname, -1, true);
} else {
if(npos < (int) Bouquets.size())
if(!favonly && (npos < (int) Bouquets.size()))
iscurrent = !Bouquets[npos]->channelList->isEmpty();
color = iscurrent ? COL_MENUCONTENT_TEXT : COL_MENUCONTENTINACTIVE_TEXT;
bgcolor = iscurrent ? COL_MENUCONTENT_PLUS_0 : COL_MENUCONTENTINACTIVE_PLUS_0;