Version: 0.9.0-svn (using KDE KDE 3.5.4) Installed from: Mandriva RPMs Compiler: Target: i586-mandriva-linux-gnu OS: Linux (i686) release 2.6.12-12mdksmp When I select a set of pictures in the download screen, everything is working correctly. When I select a set of picture using the shift key, it seems that the behavior is different. The name of the file is not displayed under the picture like it should be and when I download, the original name of the file is kept.
Created attachment 17559 [details] Selection made by ctrl key - everything is correct
Created attachment 17560 [details] Selection made by shift key - the names of the files are missing
Benoit, unforget to choose the right component. It's more easy to manage B.K.O files like this... Thanks in advance for your report. Gilles
SVN commit 578964 by mwiesweg: Properly emit signalSelectionChanged when selecting with Shift BUG: 133209 M +4 -2 iconview.cpp --- trunk/extragear/graphics/digikam/digikam/iconview.cpp #578963:578964 @@ -926,11 +926,11 @@ else if (e->state() & Qt::ShiftButton) { blockSignals(true); - + if (d->currItem) { clearSelection(); - + // select all items from/upto the current item bool bwdSelect = false; @@ -969,6 +969,8 @@ } blockSignals(false); + + emit signalSelectionChanged(); } else {