X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fchatview.cpp;h=7da0847b3dd129723cf404c1f6dd888a1fe080ad;hb=b509e40498a11254ba39b791ee7131fd319b60ab;hp=c6e6209502dd5f3dd1b268fb45fe238b011caee9;hpb=d57c91811b8f989bcaa4d5a238c65e9ffcc3b1d4;p=quassel.git diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index c6e62095..7da0847b 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -113,7 +113,7 @@ bool ChatView::event(QEvent *event) // Enable scrolling by draging, disable selecting/clicking content setDragMode(QGraphicsView::ScrollHandDrag); setInteractive(false); - // if scrollbar is not visible we need to request backlog below else we need to accept + // if scrollbar is not visible we need to request backlog below else we need to accept // the event now (return true) so that we will receive TouchUpdate and TouchEnd/TouchCancel if (verticalScrollBar()->isVisible()) return true; } @@ -135,8 +135,8 @@ bool ChatView::event(QEvent *event) // After the first movement of a Touch-Point, calculate the distance in both axis // and if the point moved more horizontally abort scroll. QTouchEvent::TouchPoint p = ((QTouchEvent*)event)->touchPoints().at(0); - double dx = abs (p.lastPos().x() - p.pos().x()); - double dy = abs (p.lastPos().y() - p.pos().y()); + double dx = qAbs(p.lastPos().x() - p.pos().x()); + double dy = qAbs(p.lastPos().y() - p.pos().y()); if (dx > dy) { setDragMode(QGraphicsView::NoDrag); setInteractive(true);