1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 08:32:42 +02:00

* Use QTextOption to v-center HeaderLabel properly.

This commit is contained in:
Christian Muehlhaeuser 2011-06-26 15:20:50 +02:00
parent 39409ed861
commit 97986d8d3e

View File

@ -37,7 +37,7 @@ HeaderLabel::HeaderLabel( QWidget* parent )
#endif
setFont( f );
setFixedHeight( sizeHint().height() + 6 );
setFixedHeight( sizeHint().height() + 8 );
}
@ -79,7 +79,8 @@ HeaderLabel::paintEvent( QPaintEvent* event )
p.drawLine( line );
}
r.adjust( 8, 2, -8, -2 );
QTextOption to( Qt::AlignVCenter );
r.adjust( 8, 0, -8, 0 );
p.setPen( Qt::white );
p.drawText( r, text() );
p.drawText( r, text(), to );
}