audioplayer: don't darken every second entry

Origin commit data
------------------
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
This commit is contained in:
vanhofen
2016-10-01 22:40:16 +02:00
parent 03dfe1e370
commit 19f9e7bd9e

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)
{