diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-11 11:19:22 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-11 11:19:22 +0100 |
commit | 7a106ed1b4af53a04467cfdaa4c79d5946a3b999 (patch) | |
tree | 12cda5f4ce235bd2671e4d6dc578724dd87e2827 /src/webview.cpp | |
parent | Show clear button in history panel filter line edit (diff) | |
download | rekonq-7a106ed1b4af53a04467cfdaa4c79d5946a3b999.tar.xz |
Fixing about: protocol loading.
And removing MouseMoveEvent check.
I have to point out that this fix works just with Qt 4.5
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 9b439ba3..1dd5ad6a 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -368,12 +368,6 @@ void WebView::mousePressEvent(QMouseEvent *event) void WebView::mouseMoveEvent(QMouseEvent *event) { m_mousePos = event->pos(); - - // fix crashes on loading homepage links when no internet - // connection (so, failed loading) - if(url().protocol() == QLatin1String("rekonq")) - return; - QWebView::mouseMoveEvent(event); } |