1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-04 16:12:24 +02:00

* Don't cut off fonts in HeaderLabel.

This commit is contained in:
Christian Muehlhaeuser 2011-06-26 13:28:04 +02:00
parent 1e62c117e4
commit 39409ed861

View File

@ -38,7 +38,6 @@ HeaderLabel::HeaderLabel( QWidget* parent )
setFont( f );
setFixedHeight( sizeHint().height() + 6 );
qDebug() << "FOOBAR:" << minimumSize();
}
@ -80,7 +79,7 @@ HeaderLabel::paintEvent( QPaintEvent* event )
p.drawLine( line );
}
r.adjust( 8, 3, -8, -3 );
r.adjust( 8, 2, -8, -2 );
p.setPen( Qt::white );
p.drawText( r, text() );
}