X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatline.cpp;h=2af3269a380ca91691a1cf505592ef6ec4427b5c;hb=a66ec86776c22be7b4b57db18a29d3d82e3be1da;hp=6032cbef5969814bdd94badb395ccb621885c546;hpb=6330f7fe3d19113cbf29944a9b6e8b503893d4a9;p=quassel.git diff --git a/src/qtui/chatline.cpp b/src/qtui/chatline.cpp index 6032cbef..2af3269a 100644 --- a/src/qtui/chatline.cpp +++ b/src/qtui/chatline.cpp @@ -49,7 +49,8 @@ ChatLine::ChatLine(int row, QAbstractItemModel *model, _width(width), _height(_contentsItem.height()), _selection(0), - _mouseGrabberItem(0) + _mouseGrabberItem(0), + _hoverItem(0) { Q_ASSERT(model); QModelIndex index = model->index(row, ChatLineModel::ContentsColumn); @@ -247,14 +248,17 @@ void ChatLine::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { void ChatLine::hoverEnterEvent(QGraphicsSceneHoverEvent *event) { ChatItem *item = mouseEventTargetItem(event->pos()); - if(item) + if(item) { + Q_ASSERT(!_hoverItem); + _hoverItem = item; item->hoverEnterEvent(event); + } } void ChatLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { - ChatItem *item = mouseEventTargetItem(event->pos()); - if(item) - item->hoverLeaveEvent(event); + Q_ASSERT(_hoverItem); + _hoverItem->hoverLeaveEvent(event); + _hoverItem = 0; } void ChatLine::hoverMoveEvent(QGraphicsSceneHoverEvent *event) {