diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-09 23:51:33 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-10 11:37:31 +0200 |
commit | e55e9c541f7a700de529b521552cc935619cc894 (patch) | |
tree | 9664e74302dfeec8074eaa28b754a806d0b68fb1 /src/webview.cpp | |
parent | remove useless #includes (diff) | |
download | rekonq-e55e9c541f7a700de529b521552cc935619cc894.tar.xz |
- Fix Ctrl + wheel shortcut
- Fix zoomUp at the end of the bar
- add a stretch on the right
Diffstat (limited to 'src/webview.cpp')
-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 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); } } |