diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-12 08:14:38 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-12 08:14:38 +0200 |
commit | dc7ce0a224e70b785cdae7445a26aae412e55055 (patch) | |
tree | 4b80e1d1566dd455a800e010e04945d623074fd4 /src | |
parent | WebView: always add zoom widget to context menu (diff) | |
download | smolbote-dc7ce0a224e70b785cdae7445a26aae412e55055.tar.xz |
WebView: fix context menu transparency with Plasma
Diffstat (limited to 'src')
-rw-r--r-- | src/webengine/webview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webengine/webview.cpp b/src/webengine/webview.cpp index b7258ea..c286dbf 100644 --- a/src/webengine/webview.cpp +++ b/src/webengine/webview.cpp @@ -212,7 +212,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event) } menu->setMinimumWidth(250); - menu->popup(event->globalPos()); + menu->exec(event->globalPos()); } void WebView::triggerViewAction(WebView::ViewAction action) |