diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-17 15:09:14 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-17 15:09:14 +0200 |
commit | 528753fbdfd342050ad76c7b0838ed4d6bbb1c90 (patch) | |
tree | d5697be24dc7472896212ad115920d8b91d782ee | |
parent | - Fix an issue with some websites which need to handle wheel events (eg: goog... (diff) | |
download | rekonq-528753fbdfd342050ad76c7b0838ed4d6bbb1c90.tar.xz |
Remove a space
-rw-r--r-- | src/webview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 7794e3bc..b710719f 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -558,7 +558,7 @@ void WebView::wheelEvent(QWheelEvent *event) emit zoomChanged(newFactor); } - else if ( ReKonfig::smoothScrolling() && ypos != page()->currentFrame()->scrollPosition().y()) + else if (ReKonfig::smoothScrolling() && ypos != page()->currentFrame()->scrollPosition().y()) { page()->currentFrame()->setScrollPosition(QPoint(page()->currentFrame()->scrollPosition().x(), ypos)); |