1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

[WebView] Don't clear selection when right clicking on selected link

This removes a workaround for a very old QtWebKit (<= 2.0) that actually
caused unwanted behavior with newer QtWebKit versions.

Closes #1377

[ci-skip]
This commit is contained in:
David Rosca 2014-06-05 15:43:17 +02:00
parent 0af8f45a5f
commit dc1b5931ea

View File

@ -1072,11 +1072,6 @@ void WebView::createPageContextMenu(QMenu* menu, const QPoint &pos)
void WebView::createLinkContextMenu(QMenu* menu, const QWebHitTestResult &hitTest)
{
// Workaround for QtWebKit <= 2.0 when selecting link text on right click
if (page()->selectedText() == hitTest.linkText()) {
findText(QString());
}
menu->addSeparator();
Action* act = new Action(IconProvider::newTabIcon(), tr("Open link in new &tab"));
act->setData(hitTest.linkUrl());