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

TWK-888: Steer text color should be highlighted text color

This commit is contained in:
Leo Franchi 2012-05-25 15:38:48 -04:00
parent 873b8dab91
commit 3cac235232

View File

@ -66,6 +66,11 @@ EchonestSteerer::EchonestSteerer( QWidget* parent )
// m_steerBottom->setFont( f );
// m_textL->addWidget( m_steerBottom );
QPalette p = m_steerTop->palette();
p.setBrush( QPalette::WindowText, palette().highlightedText() );
m_steerTop->setPalette( p );
m_layout->addLayout( m_textL, 1 );
m_amplifier = new QComboBox( this );