Hide the "drop" indicator when an item is not hovered any more

This fixes the problem that the drop indicator might still be shown
after the drag&drop operation in the Places Panel is finished.

REVIEW: 111037
This commit is contained in:
Frank Reininghaus 2013-06-20 19:29:10 +02:00
parent 6db55f5443
commit 51f2bdaeab

View file

@ -869,6 +869,8 @@ bool KItemListController::dragMoveEvent(QGraphicsSceneDragDropEvent* event, cons
emit itemUnhovered(index);
}
}
} else {
m_view->hideDropIndicator();
}
return false;