Bug 120053 - digikam: whatthis info not closed when albumview is scrolled up or down with cursur keys
Summary: digikam: whatthis info not closed when albumview is scrolled up or down with ...
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-Ergonomy (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-13 17:54 UTC by Achim Bohnet
Modified: 2017-08-05 07:49 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 0.9.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Achim Bohnet 2006-01-13 17:54:10 UTC
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
Comment 1 caulier.gilles 2006-04-04 13:39:14 UTC
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();
     }
 }
 
Comment 2 caulier.gilles 2006-04-04 13:41:30 UTC
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();        
     }
 }
 
Comment 3 caulier.gilles 2006-04-04 13:43:10 UTC
And another one fixed Achim (:=))). I close this file

Gilles