Summary: | shift selection is not working in download screen | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Benoit DUMONT <vertigo17> |
Component: | Import-IconView | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | 0.9.0 | ||
Target Milestone: | --- | ||
Platform: | Mandriva RPMs | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.0 | |
Sentry Crash Report: | |||
Attachments: |
Selection made by ctrl key - everything is correct
Selection made by shift key - the names of the files are missing |
Description
Benoit DUMONT
2006-08-29 21:25:42 UTC
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 { |