1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

* Set black foreground on biography.

This commit is contained in:
Christian Muehlhaeuser
2014-08-20 06:03:19 +02:00
parent 0a8263e083
commit 8d94bbe8e3

View File

@@ -133,6 +133,10 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
ui->biography->setOpenLinks( false );
ui->biography->setOpenExternalLinks( true );
QPalette p = ui->biography->palette();
p.setColor( QPalette::Foreground, Qt::black );
ui->biography->setPalette( p );
ui->biography->document()->setDefaultStyleSheet( QString( "a { text-decoration: none; font-weight: bold; color: #000000; }" ) );
TomahawkStyle::stylePageFrame( ui->biography );
TomahawkStyle::stylePageFrame( ui->bioFrame );