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

* Hardcode foreground color for OverlayWidgets. Needs improved color management eventually.

This commit is contained in:
Christian Muehlhaeuser 2012-06-12 07:48:04 +02:00
parent 6a8edd688b
commit 82febe8da3

View File

@ -248,6 +248,7 @@ OverlayWidget::paintEvent( QPaintEvent* event )
}
p.setFont( f );
p.setPen( palette().highlightedText().color() );
// p.setPen( palette().highlightedText().color() );
p.setPen( Qt::white );
p.drawText( r.adjusted( 8, 8, -8, -8 ), text(), to );
}