Version: (using KDE Devel) Installed from: Compiled sources Compiler: gcc3.4.3 OS: Linux When select single day in Date panel and switch to other panel (eg. Tags) don't see any images. Have to return to Date panel (or choose whole month) and return. This apply also to any sub-view of calendar: day of week or week. No significant Konsole output
SVN commit 439571 by pahlibar: if the dateview becomes inactive, set the month filter view to inactive as well. this will remove any date filtering BUGS: 109705 M +7 -0 datefolderview.cpp --- trunk/extragear/graphics/digikam/digikam/datefolderview.cpp #439570:439571 @@ -132,11 +132,18 @@ void DateFolderView::setActive(bool val) { + if (d->active == val) + return; + d->active = val; if (d->active) { slotSelectionChanged(); } + else + { + d->monthview->setActive(false); + } } void DateFolderView::slotAllDAlbumsLoaded()
Not reproducible with 7.0.0-beta1