| Summary: | When quit date panel with day selected no images in other panels | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Mikolaj Machowski <mikmach> |
| Component: | Searches-Dates | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 7.0.0 | |
| Sentry Crash Report: | |||
|
Description
Mikolaj Machowski
2005-07-27 14:35:33 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()
Not reproducible with 7.0.0-beta1 |