1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

Another os x ui tweak

This commit is contained in:
Leo Franchi 2012-05-30 12:11:24 +01:00
parent ff0d4bcc26
commit 0401c4c88c

View File

@ -68,7 +68,11 @@ EchonestSteerer::EchonestSteerer( QWidget* parent )
QPalette p = m_steerTop->palette();
p.setBrush( QPalette::WindowText, palette().highlightedText() );
#ifdef Q_OS_MAC
p.setBrush( QPalette::WindowText, Qt::white );
#else
p.setBrush( QPalette::WindowText, palette().highlightedText() );
#endif
m_steerTop->setPalette( p );
m_layout->addLayout( m_textL, 1 );