X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.cpp;h=8d3eed482204cbba6acb7d6d34f5c7baea0f2c9b;hp=e21d625c1d6b4953121603f1098460b6ae2e3333;hb=31745736b8b31647f6224c5a3fe9e82e0320f0f1;hpb=6c44f3cfc618a3fc55f583597be3697714a07ae7 diff --git a/src/qtui/chatscene.cpp b/src/qtui/chatscene.cpp index e21d625c..8d3eed48 100644 --- a/src/qtui/chatscene.cpp +++ b/src/qtui/chatscene.cpp @@ -516,6 +516,7 @@ void ChatScene::updateSelection(const QPointF &pos) { void ChatScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event) { if(_isSelecting && event->buttons() == Qt::LeftButton) { updateSelection(event->scenePos()); + emit mouseMoveWhileSelecting(event->scenePos()); event->accept(); } else { QGraphicsScene::mouseMoveEvent(event);