From 92ad6f09a580afb60d55446b515b38a619f83d9d Mon Sep 17 00:00:00 2001 From: Tsu Jan Date: Wed, 21 Aug 2024 18:39:15 +0330 Subject: [PATCH] Added a missing change --- panel/lxqtpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/lxqtpanel.cpp b/panel/lxqtpanel.cpp index 4c4607ffc..545617bb4 100644 --- a/panel/lxqtpanel.cpp +++ b/panel/lxqtpanel.cpp @@ -1486,7 +1486,7 @@ QRect LXQtPanel::calculatePopupWindowPos(const ILXQtPanelPlugin *plugin, const Q } // Note: assuming there are not contentMargins around the "BackgroundWidget" (LXQtPanelWidget) - return calculatePopupWindowPos(mGeometry.topLeft() + panel_plugin->geometry().topLeft(), windowSize); + return calculatePopupWindowPos(mapToGlobal(panel_plugin->geometry().topLeft()), windowSize); }