diff options
author | emersion <contact@emersion.fr> | 2017-11-15 14:03:13 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-11-15 14:03:13 +0100 |
commit | 3f6cf517b9b8d5efa0c6001db5ed0871e5d8d2b4 (patch) | |
tree | 5aa4127dfa5411864ff4fcccd64bf32b692f151c /rootston/output.c | |
parent | bb973ff27d5b735d2eb8ec620d7ea74e43eab301 (diff) |
Add wlr_xdg_surface_v6_popup_get_position
Diffstat (limited to 'rootston/output.c')
-rw-r--r-- | rootston/output.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/rootston/output.c b/rootston/output.c index cfab3756..28312c2c 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -115,17 +115,15 @@ static void render_xdg_v6_popups(struct wlr_xdg_surface_v6 *surface, double popup_width = popup->surface->current->width; double popup_height = popup->surface->current->height; - double popup_x = surface->geometry->x + popup->popup_state->geometry.x - - popup->geometry->x; - double popup_y = surface->geometry->y + popup->popup_state->geometry.y - - popup->geometry->y; - rotate_child_position(&popup_x, &popup_y, popup_width, popup_height, + double popup_sx, popup_sy; + wlr_xdg_surface_v6_popup_get_position(popup, &popup_sx, &popup_sy); + rotate_child_position(&popup_sx, &popup_sy, popup_width, popup_height, width, height, rotation); render_surface(popup->surface, desktop, wlr_output, when, - base_x + popup_x, base_y + popup_y, rotation); - render_xdg_v6_popups(popup, desktop, wlr_output, when, base_x + popup_x, - base_y + popup_y, rotation); + base_x + popup_sx, base_y + popup_sy, rotation); + render_xdg_v6_popups(popup, desktop, wlr_output, when, + base_x + popup_sx, base_y + popup_sy, rotation); } } |