SVN commit 1236944 by rkcosta: Do not show progress information when fetching covers from the internet. The transfers are usually quite fast, and getting lots of "Download of http://whatever.com/blah has finished" KIO messages is not very informative (JuK produces an "Album cover has been fetched" message of its own anyway). CCMAIL: mpyne@kde.org CCMAIL: gekylafas@gmail.com M +1 -1 webimagefetcher.cpp --- trunk/KDE/kdemultimedia/juk/webimagefetcher.cpp #1236943:1236944 @@ -105,7 +105,7 @@ kDebug() << "Using request " << url.encodedPathAndQuery(); - d->connection = KIO::storedGet(url, KIO::Reload /* reload always */); + d->connection = KIO::storedGet(url, KIO::Reload /* reload always */, KIO::HideProgressInfo); connect(d->connection, SIGNAL(result(KJob *)), SLOT(slotWebRequestFinished(KJob *))); // Wait for the results...