mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-09 23:45:58 +01:00
fix for latest wlroots
This commit is contained in:
parent
d8c5e53c08
commit
1bef63a1e6
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ void addPopupGlobalCoords(void* pPopup, int* x, int* y) {
|
||||||
|
|
||||||
auto curPopup = PPOPUP;
|
auto curPopup = PPOPUP;
|
||||||
while (true) {
|
while (true) {
|
||||||
px += curPopup->popup->geometry.x;
|
px += curPopup->popup->current.geometry.x;
|
||||||
py += curPopup->popup->geometry.y;
|
py += curPopup->popup->current.geometry.y;
|
||||||
|
|
||||||
if (curPopup->parentPopup) {
|
if (curPopup->parentPopup) {
|
||||||
curPopup = curPopup->parentPopup;
|
curPopup = curPopup->parentPopup;
|
||||||
|
|
Loading…
Reference in a new issue