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

[StatusBar] Don't decode url of hovered link

Workarounds #1095
This commit is contained in:
nowrep 2013-12-05 18:45:11 +01:00
parent 4f3aba95ff
commit 43ab2e44f0

View File

@ -198,7 +198,11 @@ void TabbedWebView::linkHovered(const QString &link, const QString &title, const
p_QupZilla->statusBarMessage()->clearMessage();
}
else {
p_QupZilla->statusBarMessage()->showMessage(QString::fromUtf8(QByteArray::fromPercentEncoding(link.toUtf8())));
// QUrl::fromEncoded(link.toUtf8());
// Don't decode link from percent encoding (to show all utf8 chars), as it doesn't
// works correctly in all cases
// See #1095
p_QupZilla->statusBarMessage()->showMessage(link);
}
}
}