1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-08 23:26:40 +02:00

* Increased letter spacing and less opacity in header.

This commit is contained in:
Christian Muehlhaeuser
2014-08-27 20:15:36 +02:00
parent 68b38cd7bc
commit c86a75ae15

View File

@@ -42,11 +42,11 @@ BasicHeader::BasicHeader( QWidget* parent )
{
QFont f = ui->captionLabel->font();
f.setBold( true );
f.setPointSize( TomahawkUtils::defaultFontSize() + 6 );
f.setLetterSpacing( QFont::PercentageSpacing, 110 );
QPalette p = ui->captionLabel->palette();
p.setColor( QPalette::Foreground, Qt::white );
p.setColor( QPalette::Foreground, QColor( 255, 255, 255, 235 ) );
ui->captionLabel->setFont( f );
ui->captionLabel->setPalette( p );