pictureviewer: don't darken every second entry

Origin commit data
------------------
Branch: ni/coolstream
Commit: 6b237c3166
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-10-01 (Sat, 01 Oct 2016)

Origin message was:
------------------
- pictureviewer: don't darken every second entry

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-10-01 22:40:52 +02:00
parent 5487d5d99e
commit e6ea52135d

View File

@@ -682,12 +682,15 @@ void CPictureViewerGui::paintItem(int pos)
fb_pixel_t color;
fb_pixel_t bgcolor;
//NI - don't darken every second entry
#if 0
if ((liststart+pos < playlist.size()) && (pos & 1) )
{
color = COL_MENUCONTENTDARK_TEXT;
bgcolor = COL_MENUCONTENTDARK_PLUS_0;
}
else
#endif
{
color = COL_MENUCONTENT_TEXT;
bgcolor = COL_MENUCONTENT_PLUS_0;