From dbd137a561fb7515aa85ab952025eb3c9fd601bf Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 26 Jun 2012 03:44:03 +0200 Subject: [PATCH] * Don't scale now playing icon decoration when expanding a playlist item. --- src/sourcetree/SourceDelegate.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/sourcetree/SourceDelegate.cpp b/src/sourcetree/SourceDelegate.cpp index 742699ec0..9b9b71943 100644 --- a/src/sourcetree/SourceDelegate.cpp +++ b/src/sourcetree/SourceDelegate.cpp @@ -134,7 +134,16 @@ SourceDelegate::paintDecorations( QPainter* painter, const QStyleOptionViewItem& if ( playable && playing && item->isBeingPlayed() ) { - const int iconW = option.rect.height() - 4; + int iconW = option.rect.height() - 4; + if ( m_expandedMap.contains( index ) ) + { + AnimationHelper* ah = m_expandedMap.value( index ); + if ( ah->initialized() ) + { + iconW = ah->originalSize().height() - 4; + } + } + QRect iconRect = QRect( 4, option.rect.y() + 2, iconW, iconW ); QPixmap speaker = option.state & QStyle::State_Selected ? m_nowPlayingSpeaker : m_nowPlayingSpeakerDark; speaker = speaker.scaledToHeight( iconW, Qt::SmoothTransformation );