Version: 0.8.0-beta2 (using KDE KDE 3.4.2) Installed from: Compiled From Sources OS: Linux in "Dates" view and "Searches" view (left sidebar), photos have a contextual menu "Set as Tag Thumbnail" but it does nothing (perhaps, the correct menu names are "Set as Date Thumbnail" and "Set as Search Thumbnail" in order to set a thumnail for the corresponding date or search?).
SVN commit 467065 by pahlibar: disable the "set as XX thumbnail" in the non-albums/tags view BUGS: 113805 M +7 -4 albumiconview.cpp --- trunk/extragear/graphics/digikam/digikam/albumiconview.cpp #467064:467065 @@ -444,10 +444,13 @@ popmenu.insertItem(SmallIcon("exifinfo"), i18n("Properties"), 14); - if( d->currentAlbum && d->currentAlbum->type() == Album::PHYSICAL ) - popmenu.insertItem(i18n("Set as Album Thumbnail"), 17); - else - popmenu.insertItem(i18n("Set as Tag Thumbnail"), 17); + if (d->currentAlbum) + { + if (d->currentAlbum->type() == Album::PHYSICAL ) + popmenu.insertItem(i18n("Set as Album Thumbnail"), 17); + else if (d->currentAlbum->type() == Album::TAG ) + popmenu.insertItem(i18n("Set as Tag Thumbnail"), 17); + } popmenu.insertSeparator();
I have tested this bug fix with the lastest SVN, "set as XX thumbnail" is now removed in the "Dates" view and "Searches" view. Thank you.
Fixed by Renchi. Closed.