summaryrefslogtreecommitdiff
path: root/src/webview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-08-10 23:47:57 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-08-10 23:47:57 +0200
commit8b6d7ed54e48940bc98d26fc1b67547ca12993ce (patch)
tree17fd3694356020dc41454815b3b4f97b4e8afc41 /src/webview.cpp
parentMerge branch 'master' of gitorious.org:rekonq/mainline (diff)
parentFix comments (diff)
downloadrekonq-8b6d7ed54e48940bc98d26fc1b67547ca12993ce.tar.xz
Merge commit 'refs/merge-requests/159' of git://gitorious.org/rekonq/mainline into m159
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 188216f8..a1b39805 100644
--- a/src/webview.cpp
+++ b/src/webview.cpp
@@ -543,7 +543,7 @@ void WebView::wheelEvent(QWheelEvent *event)
if ((zoomFactor() * 10 - newFactor) > 0.5)
newFactor++;
- emit zoomChanged((qreal)newFactor / 10);
+ emit zoomChanged(newFactor);
}
}