From b9050fca6919f756beb2701a922cf99348efa6c9 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Sun, 1 Jul 2018 21:47:18 +1000 Subject: [PATCH] Render subsurfaces of popups --- sway/desktop/render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/desktop/render.c b/sway/desktop/render.c index dc7610e41..1765cce6f 100644 --- a/sway/desktop/render.c +++ b/sway/desktop/render.c @@ -252,7 +252,7 @@ static void render_popup(struct wlr_surface *surface, int sx, int sy, struct sway_view *view = data; double ox = view->swayc->current.view_x - context.output_lx + sx; double oy = view->swayc->current.view_y - context.output_ly + sy; - render_surface(surface, ox, oy, view->swayc->alpha); + render_surfaces(surface, ox, oy, view->swayc->alpha); } static void render_view_popups(struct sway_container *con, void *data) {