audioplayer: don't darken every second entry

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

Origin message was:
------------------
- audioplayer: 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:16 +02:00
parent 6d470dcdd2
commit 5487d5d99e

View File

@@ -1542,6 +1542,8 @@ void CAudioPlayerGui::paintItem(int pos)
}
else
{
//NI - don't darken every second entry
#if 0
if (((pos + m_liststart) < m_playlist.size()) && (pos & 1))
{
if ((pos + m_liststart) == (unsigned)m_current)
@@ -1556,6 +1558,7 @@ void CAudioPlayerGui::paintItem(int pos)
}
}
else
#endif
{
if ((pos + m_liststart) == (unsigned)m_current)
{