From kde-bugs-dist Tue Feb 28 23:27:09 2006 From: Martin Aumueller Date: Tue, 28 Feb 2006 23:27:09 +0000 To: kde-bugs-dist Subject: [Bug 122561] iPod/last.fm interaction causes misleading statusbar Message-Id: <20060228232709.10697.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=114119260528447 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=122561 ------- Additional Comments From aumuell reserv at 2006-03-01 00:27 ------- SVN commit 514664 by aumuell: also show notification about tracks remaining to be submitted to last.fm if only tracks from media device are still queued CCBUG: 122561 M +3 -2 scrobbler.cpp --- trunk/extragear/multimedia/amarok/src/scrobbler.cpp #514663:514664 @ -1033,10 +1033,11 @ } } - if ( m_submitQueue.count() > 0 ) + if ( m_submitQueue.count() + m_fakeQueue.count() > 0 ) { _long += "

"; - _long += i18n( "One track still in queue", "%n tracks still in queue", m_submitQueue.count() + m_fakeQueue.count() ); + _long += i18n( "One track still in queue", "%n tracks still in queue", + m_submitQueue.count() + m_fakeQueue.count() ); } amaroK::StatusBar::instance()->shortLongMessage( _short, _long );