1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

Fixed loading url on new tab from preferences.

- regression from 14e0040a9f
This commit is contained in:
nowrep 2012-07-13 22:45:40 +02:00
parent 57298c9862
commit 36dfab9895

View File

@ -314,6 +314,7 @@ int TabWidget::addView(QNetworkRequest req, const QString &title, const Qz::NewT
connect(webView, SIGNAL(ipChanged(QString)), p_QupZilla->ipLabel(), SLOT(setText(QString))); connect(webView, SIGNAL(ipChanged(QString)), p_QupZilla->ipLabel(), SLOT(setText(QString)));
if (url.isValid()) { if (url.isValid()) {
req.setUrl(url);
webView->load(req); webView->load(req);
} }