Version: 0.8.0 (using KDE 3.4.3, Kubuntu Package 4:3.4.3-0ubuntu1 ) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.12-10-686 Looks like sometime in the past digikam did no longer save (or load) the state of 'my albums'. At least it now always opens with the same state when I start digikam. ah, and 'my tags' does remember it's state too. 'my date' is okay. Achim
I can not reproduce it here....
Hi Tom, I did some more test and found that all closed Albums that have still an open child, are on restart always open again. Only when all subalbums are closed too, the open/close state of an album is remembered on restart. Achim
SVN commit 492444 by jahrens: BUG: 117401 M +2 -2 folderview.cpp --- trunk/extragear/graphics/digikam/digikam/folderview.cpp #492443:492444 @@ -314,8 +314,8 @@ } FolderItem *item; - QListViewItemIterator it(this); - for( ; it.current(); ++it) + QListViewItemIterator it(this->lastItem()); + for( ; it.current(); --it) { item = dynamic_cast<FolderItem*>(it.current()); if(!item)
SVN commit 492446 by jahrens: backported... CCBUG: 117401 M +2 -2 folderview.cpp --- branches/stable/extragear/graphics/digikam/digikam/folderview.cpp #492445:492446 @@ -314,8 +314,8 @@ } FolderItem *item; - QListViewItemIterator it(this); - for( ; it.current(); ++it) + QListViewItemIterator it(this->lastItem()); + for( ; it.current(); --it) { item = dynamic_cast<FolderItem*>(it.current()); if(!item)