From 115c618fc24e424e17fdec68f5994b34b6f2c2f0 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Fri, 18 Nov 2011 17:37:53 -0500 Subject: [PATCH] Don't show speaker next to a playlist if not paused or playing --- src/sourcetree/sourcedelegate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sourcetree/sourcedelegate.cpp b/src/sourcetree/sourcedelegate.cpp index 5e77cf209..90d57836b 100644 --- a/src/sourcetree/sourcedelegate.cpp +++ b/src/sourcetree/sourcedelegate.cpp @@ -144,8 +144,8 @@ SourceDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, co type == SourcesModel::Station || type == SourcesModel::TemporaryPage || type == SourcesModel::GenericPage ); - - if ( playable && item->isBeingPlayed() ) + const bool playing = ( AudioEngine::instance()->isPlaying() || AudioEngine::instance()->isPaused() ); + if ( playable && playing && item->isBeingPlayed() ) { const int iconW = o3.rect.height() - 4; QRect iconRect = QRect( option.rect.x() - iconW - 4, option.rect.y() + 2, iconW, iconW );