SVN commit 979522 by mpyne: Allow the user to cancel setting a cover from a local file in JuK, will be in KDE 4.3 M +3 -0 playlist.cpp --- trunk/KDE/kdemultimedia/juk/playlist.cpp #979521:979522 @@ -849,6 +849,9 @@ KUrl file = KFileDialog::getImageOpenUrl( KUrl( "kfiledialog://homedir" ), this, i18n("Select Cover Image File")); + if(file.isEmpty()) + return; + QString artist = items.front()->file().tag()->artist(); QString album = items.front()->file().tag()->album();