Bug 120052 - digikam: redraw problem with whatthis info of an image show and start scrolling with the mouse
Summary: digikam: redraw problem with whatthis info of an image show and start scrolli...
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Usability-Mouse (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:46 UTC by Achim Bohnet
Modified: 2017-08-06 09:40 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:46:58 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

redraw problem with whatthis info of am image show and start scrolling with the mouse: whatthis info is not erased in the area between icons

Reproduce:

o move mouse over an image thumbnail
o whatthis pops up (make sure it covers a part between 2 the
  thumbnail boxes)
o scroll with the wheel mouse

==> whathis info is only erased inside the boxes drawn around the
thumbnail.  Whatthis is still visible between the boxes.

Achim
Comment 1 caulier.gilles 2006-04-04 13:28:46 UTC
SVN commit 526292 by cgilles:

digikam from trunk : bugfix : cleanup whatthis image info when album content is scroll with the mouse
CCMAIL: digikam-devel@kde.org
CCBUGS: 120052

 M  +1 -0      iconview.cpp  


--- trunk/extragear/graphics/digikam/digikam/iconview.cpp #526291:526292
@@ -1171,6 +1171,7 @@
     d->toolTipItem = 0;
     d->toolTipTimer->stop();
     slotToolTip();
+    viewport()->update();
 
     QScrollView::contentsWheelEvent(e);
 }
Comment 2 caulier.gilles 2006-04-04 13:30:07 UTC
SVN commit 526293 by cgilles:

digikam from stable : bugfix : cleanup whatthis image info when album content is scroll with the mouse
CCMAIL: digikam-devel@kde.org
CCBUGS: 120052

 M  +2 -1      iconview.cpp  


--- branches/stable/extragear/graphics/digikam/digikam/iconview.cpp #526292:526293
@@ -1149,7 +1149,8 @@
     d->toolTipItem = 0;
     d->toolTipTimer->stop();
     slotToolTip();
-
+    viewport()->update();
+    
     QScrollView::contentsWheelEvent(e);
 }
 
Comment 3 caulier.gilles 2006-04-04 13:31:19 UTC
Achim, bug fixed. I close this file.

Gilles
Comment 4 caulier.gilles 2006-04-07 09:49:30 UTC
SVN commit 527179 by cgilles:

digikam from trunk : bugfix : cleanup whatthis image info when album content is scroll with the mouse
CCMAIL: digikam-devel@kde.org
CCBUGS: 120052

 M  +42 -20    setupicc.cpp  
Comment 5 caulier.gilles 2006-04-07 11:55:21 UTC
SVN commit 527208 by cgilles:

digikam from stable : bugfix : cleanup whatthis image info when album content is scroll with the mouse
CCMAIL: digikam-devel@kde.org
CCBUGS: 120052

 M  +2 -2      cameraui.cpp  
 M  +1 -1      cameraui.h  


--- trunk/extragear/graphics/digikam/utilities/cameragui/cameraui.cpp #527207:527208
@@ -1,7 +1,7 @@
 /* ============================================================
  * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
  * Date  : 2004-09-16
- * Description : 
+ * Description : Camera interface dialog
  * 
  * Copyright 2004-2005 by Renchi Raju
  * Copyright 2006 by Gilles Caulier
@@ -205,7 +205,7 @@
                                              "of destination album"));
 
     QVGroupBox* OnFlyBox = new QVGroupBox(i18n("On the Fly Operations"), d->advBox);
-    d->setPhotographerId = new QCheckBox(i18n("Set photographer identity"), OnFlyBox);
+    d->setPhotographerId = new QCheckBox(i18n("Set default photographer identity"), OnFlyBox);
     d->fixDateTimeCheck  = new QCheckBox(i18n("Fix internal date && time"), OnFlyBox);
     d->dateTimeEdit      = new KDateTimeEdit( OnFlyBox, "datepicker");
     
--- trunk/extragear/graphics/digikam/utilities/cameragui/cameraui.h #527207:527208
@@ -1,7 +1,7 @@
 /* ============================================================
  * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
  * Date  : 2004-09-16
- * Description : 
+ * Description : Camera interface dialog
  * 
  * Copyright 2004-2005 by Renchi Raju
  * Copyright 2006 by Gilles Caulier