From 0829c520adf6a4821ee21a57bf4eb921297fbb1f Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 12 Nov 2012 07:12:13 +0100 Subject: [PATCH] * Fixed TWK-1066: Hide tooltip should be bold. --- src/sourcetree/SourceDelegate.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sourcetree/SourceDelegate.cpp b/src/sourcetree/SourceDelegate.cpp index 3569c0582..f2efb42db 100644 --- a/src/sourcetree/SourceDelegate.cpp +++ b/src/sourcetree/SourceDelegate.cpp @@ -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