mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-24 09:49:42 +01:00
* Always set a black foreground color for QueryLabels in AudioControls.
This commit is contained in:
parent
da0664dfcb
commit
994f59440d
@ -70,6 +70,11 @@ AudioControls::AudioControls( QWidget* parent )
|
||||
ui->albumLabel->setFont( font );
|
||||
ui->albumLabel->setType( QueryLabel::ArtistAndAlbum );
|
||||
|
||||
QPalette queryLabelsPalette = ui->artistTrackLabel->palette();
|
||||
queryLabelsPalette.setColor( QPalette::Foreground, Qt::black );
|
||||
ui->artistTrackLabel->setPalette( queryLabelsPalette );
|
||||
ui->albumLabel->setPalette( queryLabelsPalette );
|
||||
|
||||
font.setWeight( QFont::Normal );
|
||||
ui->timeLabel->setFont( font );
|
||||
ui->timeLeftLabel->setFont( font );
|
||||
|
Loading…
x
Reference in New Issue
Block a user