1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 09:49:42 +01:00

* Fixed TWK-1066: Hide tooltip should be bold.

This commit is contained in:
Christian Muehlhaeuser 2012-11-12 07:12:13 +01:00
parent 728c8815aa
commit 0829c520ad

@ -348,7 +348,9 @@ SourceDelegate::paintGroup( QPainter* painter, const QStyleOptionViewItem& optio
if ( option.state & QStyle::State_Open )
text = tr( "Hide" );
painter->setFont( option.font );
QFont font = option.font;
font.setBold( true );
painter->setFont( font );
QTextOption to( Qt::AlignBottom | Qt::AlignRight );
// draw close icon