mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-01 03:40:16 +02:00
* Fixed TWK-1066: Hide tooltip should be bold.
This commit is contained in:
@@ -348,7 +348,9 @@ SourceDelegate::paintGroup( QPainter* painter, const QStyleOptionViewItem& optio
|
|||||||
if ( option.state & QStyle::State_Open )
|
if ( option.state & QStyle::State_Open )
|
||||||
text = tr( "Hide" );
|
text = tr( "Hide" );
|
||||||
|
|
||||||
painter->setFont( option.font );
|
QFont font = option.font;
|
||||||
|
font.setBold( true );
|
||||||
|
painter->setFont( font );
|
||||||
QTextOption to( Qt::AlignBottom | Qt::AlignRight );
|
QTextOption to( Qt::AlignBottom | Qt::AlignRight );
|
||||||
|
|
||||||
// draw close icon
|
// draw close icon
|
||||||
|
Reference in New Issue
Block a user