[Digikam-devel] [Bug 145204] small issues with the light-table
Gilles Caulier
caulier.gilles at gmail.com
Tue May 8 22:14:15 BST 2007
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=145204
------- Additional Comments From caulier.gilles gmail com 2007-05-08 23:14 -------
SVN commit 662671 by cgilles:
digikam from trunk : BKO #145204 point (a) fixed.
CCBUGS: 145204
M +8 -4 thumbbar.cpp
--- trunk/extragear/graphics/digikam/libs/thumbbar/thumbbar.cpp #662670:662671
@ -569,9 +569,15 @
}
}
- if (!barItem || barItem == d->currItem)
+ if (!barItem)
return;
+ d->dragging = true;
+ d->dragStartPos = e->pos();
+
+ if (barItem == d->currItem)
+ return;
+
if (d->currItem)
{
ThumbBarItem* item = d->currItem;
@ -579,9 +585,7 @
item->repaint();
}
- d->dragging = true;
- d->dragStartPos = e->pos();
- d->currItem = barItem;
+ d->currItem = barItem;
barItem->repaint();
emit signalURLSelected(barItem->url());
More information about the Digikam-devel
mailing list