Version: 0.8.2-rc1 (using KDE 3.5.2, Kubuntu Package 4:3.5.2-0ubuntu18 dapper) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.15-23-k7 The edit tag properties dialog no longer lets the user select an icon/image outside of the normal icon theme (applications, mimetypes, etc...). The radio button for other images is grayed out, and their appears to be no other way to assign a special icon for a tag.
Using 0.8.2-rc1 (KDE 3.5.4, Kubuntu Package 4:3.5.4-0ubuntu2~dapper1) it is still the same. Selecting other icons aside from system icons for keywords is not possible, as the radio button ist greyed out. Don't know if ubuntu or digikam bug.
SVN commit 578035 by cgilles: digikam from trunk : Tags Edit/Create dialog : Let's user select others folder to choose a tag icon. BUG: 128296 M +2 -2 tagcreatedlg.cpp --- trunk/extragear/graphics/digikam/digikam/tagcreatedlg.cpp #578034:578035 @@ -162,7 +162,7 @@ { #if KDE_IS_VERSION(3,3,0) KIconDialog dlg(this); - dlg.setup(KIcon::NoGroup, KIcon::Application, false, 20, false, true, true); + dlg.setup(KIcon::NoGroup, KIcon::Application, false, 20, false, false, false); QString icon = dlg.openDialog(); #else QString icon = KIconDialog::getIcon(KIcon::NoGroup, KIcon::Application, false, 20); @@ -310,7 +310,7 @@ { #if KDE_IS_VERSION(3,3,0) KIconDialog dlg(this); - dlg.setup(KIcon::NoGroup, KIcon::Application, false, 20, false, true, true); + dlg.setup(KIcon::NoGroup, KIcon::Application, false, 20, false, false, false); QString icon = dlg.openDialog(); #else QString icon = KIconDialog::getIcon(KIcon::NoGroup, KIcon::Application, false, 20);