From 195ec2b092742671dbdb567cbab42b2d1efe2b65 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 30 Aug 2022 19:21:45 +0200 Subject: [PATCH] fix LS popup damage --- src/events/Popups.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/events/Popups.cpp b/src/events/Popups.cpp index 6c8d802f..d5eb9513 100644 --- a/src/events/Popups.cpp +++ b/src/events/Popups.cpp @@ -32,6 +32,12 @@ void addPopupGlobalCoords(void* pPopup, int* x, int* y) { py -= curPopup->popup->base->current.geometry.y; } + if (curPopup->pSurfaceTree && curPopup->pSurfaceTree->pSurface && !curPopup->parentPopup && !curPopup->parentWindow) { + const auto EXTENTSSURFACE = pixman_region32_extents(&curPopup->pSurfaceTree->pSurface->input_region); + px -= EXTENTSSURFACE->x1; + py -= EXTENTSSURFACE->y1; + } + if (curPopup->parentPopup) { curPopup = curPopup->parentPopup; } else {