diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-01 23:42:57 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-01 23:42:57 +0200 |
commit | 5128265f02e16f40dd3df044eb86c147b76513a4 (patch) | |
tree | 0221911a5fa0f45f9f2ecf09b33180a914beb7d5 /src | |
parent | updated TODO. 2 (diff) | |
download | rekonq-5128265f02e16f40dd3df044eb86c147b76513a4.tar.xz |
99% fixed target _blank issue..
Diffstat (limited to 'src')
-rw-r--r-- | src/webview.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 1057a5ef..4cb146f6 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -97,7 +97,6 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r if(m_keyboardModifiers & Qt::ControlModifier || m_pressedButtons == Qt::MidButton) { - kWarning() << "ControlModifiers clicked.."; webView = Application::instance()->newWebView(); webView->setFocus(); webView->load(request); @@ -113,11 +112,14 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r } else { - kWarning() << "NO Main Frame, creating a new WebView.."; - webView = Application::instance()->newWebView(); - webView->setFocus(); - webView->load(request); - return false; + // if frame doesn't exists (perhaps) we are pointing to a blank target.. + if(!frame) + { + webView = Application::instance()->newWebView(); + webView->setFocus(); + webView->load(request); + return false; + } } break; |