Version: (using KDE KDE 3.5.7) Installed from: Unlisted Binary Package OS: Linux When I do File->Last (or ctrl-PgDn) in the image editor mode, the image info sidebar gets desynchronized with the actual image. That way it's very easy to comment, say, 200 images only to realize at the end that the comments are saved into wrong files, which doesn't necessarily give you a nice feeling. I took a look at the source and it turned out to be a stupid copy-paste bug. Proposed patch attached.
Created attachment 20972 [details] changes one line that have been left unchanged afer a copy-paste
This bug may have something to do with an old bug #133516 that was closed with WORKSFORME.
Marcel, It just a copy and paste failure (:=)))... Patch is fine for you ? Gilles
Achim, Angelo, If patch is fine for Marcel... please unforget to backport it into 0.9.2 package. Just follow this thread before to patch DEB and RPM Thanks in advance... Gilles
SVN commit 680586 by mwiesweg: Applying the patch from Pawel Marciniak to fix copy-and-paste bug. Thank you very much for your patch. BUG: 147248 M +1 -1 imagewindow.cpp --- branches/extragear/kde3/graphics/digikam/utilities/imageeditor/editor/imagewindow.cpp #680585:680586 @@ -533,7 +533,7 @@ return; d->urlCurrent = d->urlList.last(); - d->imageInfoCurrent = d->imageInfoList.first(); + d->imageInfoCurrent = d->imageInfoList.last(); slotLoadCurrent(); }