| Summary: | set as album thumbnail doesn't change the icon immediately | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | david ross <davidxross> |
| Component: | Thumbs-Album | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.0 | |
| Sentry Crash Report: | |||
|
Description
david ross
2006-10-22 17:22:47 UTC
SVN commit 598184 by mwiesweg:
Correct copy-and-paste mistake.
Oops, would have thought I had checked this twice.
Ok, it only affects changing the thumbnail.
Thanks for the report.
BUG: 136138
M +2 -2 albumdb.cpp
--- trunk/extragear/graphics/digikam/digikam/albumdb.cpp #598183:598184
@@ -473,9 +473,9 @@
QStringList values;
execSql( QString("SELECT B.url, I.name \n "
"FROM Albums AS A \n "
- " LEFT OUTER JOIN Images AS I ON I.id=T.icon \n "
+ " LEFT OUTER JOIN Images AS I ON I.id=A.icon \n "
" LEFT OUTER JOIN Albums AS B ON B.id=I.dirid \n "
- "WHERE T.id=%1;")
+ "WHERE A.id=%1;")
.arg(albumID), &values );
if (values.isEmpty())
return QString();
|