summaryrefslogtreecommitdiff
path: root/src/webview.cpp
diff options
context:
space:
mode:
authorYoann Laissus <yoann.laissus@gmail.com>2010-08-17 15:09:14 +0200
committerYoann Laissus <yoann.laissus@gmail.com>2010-08-17 15:09:14 +0200
commit528753fbdfd342050ad76c7b0838ed4d6bbb1c90 (patch)
treed5697be24dc7472896212ad115920d8b91d782ee /src/webview.cpp
parent- Fix an issue with some websites which need to handle wheel events (eg: goog... (diff)
downloadrekonq-528753fbdfd342050ad76c7b0838ed4d6bbb1c90.tar.xz
Remove a space
Diffstat (limited to 'src/webview.cpp')
-rw-r--r--src/webview.cpp2
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));