From 19f9e7bd9edb1ba19aff685634ecf0f3f46ee109 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 1 Oct 2016 22:40:16 +0200 Subject: [PATCH] audioplayer: don't darken every second entry Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/5c8e9f7fd39575fe96e7bf309d865899a759f39d Author: vanhofen Date: 2016-10-01 (Sat, 01 Oct 2016) Origin message was: ------------------ - audioplayer: don't darken every second entry --- src/gui/audioplayer.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/audioplayer.cpp b/src/gui/audioplayer.cpp index caf0c395c..b3dff92cc 100644 --- a/src/gui/audioplayer.cpp +++ b/src/gui/audioplayer.cpp @@ -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) {