mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-24 12:46:35 +01:00
WebHitTestResult: Only update with contextmenu data with same position
This commit is contained in:
parent
e7bd2ed8cd
commit
1ed1059c42
@ -1,6 +1,6 @@
|
||||
/* ============================================================
|
||||
* QupZilla - QtWebEngine based browser
|
||||
* Copyright (C) 2015-2016 David Rosca <nowrep@gmail.com>
|
||||
* QupZilla - Qt web browser
|
||||
* Copyright (C) 2015-2017 David Rosca <nowrep@gmail.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -91,7 +91,7 @@ WebHitTestResult::WebHitTestResult(const WebPage *page, const QPoint &pos)
|
||||
|
||||
void WebHitTestResult::updateWithContextMenuData(const QWebEngineContextMenuData &data)
|
||||
{
|
||||
if (!data.isValid()) {
|
||||
if (!data.isValid() || data.position() != m_pos) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user