Bug 109705

Summary: When quit date panel with day selected no images in other panels
Product: [Applications] digikam Reporter: Mikolaj Machowski <mikmach>
Component: Searches-DatesAssignee: Digikam Developers <digikam-bugs-null>
Status: RESOLVED FIXED    
Severity: normal CC: caulier.gilles
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In: 7.0.0

Description Mikolaj Machowski 2005-07-27 14:35:33 UTC
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
Comment 1 Renchi Raju 2005-07-28 15:37:00 UTC
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()
Comment 2 caulier.gilles 2019-12-27 22:56:45 UTC
Not reproducible with 7.0.0-beta1