Version: 0.8.1 (using KDE 3.5.0, Kubuntu Package 4:3.5.0-0ubuntu9 dapper) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.15-11-686 digikam: whatthis info not closed when albumview is scrolled up or down with cursur keys. Reproduce: o move mouse over an image thumbnail o whatthis pops up o scroll album image view with up or down keys ==> whatis stays open with the same info, regardless what image now shown. Should be closed should be closed. In case a new image comes to rest under the mouse, popup whatthis as usual again. Achim
SVN commit 526297 by cgilles: digikam from stable : bugfix : cleanup whatthis image info when album content is scroll with keys CCMAIL: digikam-devel@kde.org CCBUGS: 120053 M +3 -0 iconview.cpp --- trunk/extragear/graphics/digikam/digikam/iconview.cpp #526296:526297 @@ -1610,6 +1610,9 @@ { emit signalSelectionChanged(); viewport()->update(); + d->toolTipItem = 0; + d->toolTipTimer->stop(); + slotToolTip(); } }
SVN commit 526298 by cgilles: digikam from trunk : bugfix : cleanup whatthis image info when album content is scroll with keys CCMAIL: digikam-devel@kde.org CCBUGS: 120053 M +3 -0 iconview.cpp --- branches/stable/extragear/graphics/digikam/digikam/iconview.cpp #526297:526298 @@ -1587,6 +1587,9 @@ { emit signalSelectionChanged(); viewport()->update(); + d->toolTipItem = 0; + d->toolTipTimer->stop(); + slotToolTip(); } }
And another one fixed Achim (:=))). I close this file Gilles