aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/xdg_shell.c')
-rw-r--r--sway/desktop/xdg_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index 51168f4c..16121733 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -27,8 +27,8 @@ static void popup_get_view_coords(struct sway_view_child *child,
27 struct wlr_xdg_popup *wlr_popup = popup->wlr_xdg_popup; 27 struct wlr_xdg_popup *wlr_popup = popup->wlr_xdg_popup;
28 28
29 wlr_xdg_popup_get_toplevel_coords(wlr_popup, 29 wlr_xdg_popup_get_toplevel_coords(wlr_popup,
30 wlr_popup->geometry.x - wlr_popup->base->current.geometry.x, 30 wlr_popup->current.geometry.x - wlr_popup->base->current.geometry.x,
31 wlr_popup->geometry.y - wlr_popup->base->current.geometry.y, 31 wlr_popup->current.geometry.y - wlr_popup->base->current.geometry.y,
32 sx, sy); 32 sx, sy);
33} 33}
34 34