SVN commit 855512 by dmeltzer: Show the progress operation on a manual fetch, so that there is some feedback.. especially on slow connections M +3 -0 CoverFetcher.cpp --- trunk/extragear/multimedia/amarok/src/covermanager/CoverFetcher.cpp #855511:855512 @@ -281,6 +281,9 @@ KJob* job = KIO::storedGet( url, KIO::NoReload, KIO::HideProgressInfo ); connect( job, SIGNAL(result( KJob* )), SLOT(finishedXmlFetch( KJob* )) ); + + if( m_userCanEditQuery ) + The::statusBar()->newProgressOperation( job ).setDescription( i18n( "Fetching Cover" ) ); }