From 1025dc3cc295d33ea45c5d228b6afa210c5ec891 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 23 Aug 2014 16:58:20 +0200 Subject: [PATCH] * No need to re-set default font. Implement proper size-hint for CaptionLabel. --- src/libtomahawk/widgets/CaptionLabel.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/libtomahawk/widgets/CaptionLabel.cpp b/src/libtomahawk/widgets/CaptionLabel.cpp index 109e0f4cb..ad2bb5b88 100644 --- a/src/libtomahawk/widgets/CaptionLabel.cpp +++ b/src/libtomahawk/widgets/CaptionLabel.cpp @@ -30,11 +30,6 @@ CaptionLabel::CaptionLabel( QWidget* parent ) , m_parent( parent ) , m_showCloseButton( false ) { - QFont f = font(); - f.setPointSize( 10 ); - setFont( f ); - - setFixedHeight( QFontMetrics( f ).height() + 12 ); setMouseTracking( true ); setShowCloseButton( m_showCloseButton ); @@ -49,7 +44,8 @@ CaptionLabel::~CaptionLabel() QSize CaptionLabel::sizeHint() const { - return QLabel::sizeHint(); + QFontMetrics fm( font() ); + return QSize( fm.width( text().toUpper() ), fm.height() * 1.7 ); }