aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/desktop/output.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 8d25caae..b19b72df 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -282,6 +282,11 @@ static void render_output(struct sway_output *output, struct timespec *when,
282 wlr_renderer_clear(renderer, clear_color); 282 wlr_renderer_clear(renderer, clear_color);
283 // TODO: handle views smaller than the output 283 // TODO: handle views smaller than the output
284 render_container(output, workspace->sway_workspace->fullscreen->swayc); 284 render_container(output, workspace->sway_workspace->fullscreen->swayc);
285
286 if (workspace->sway_workspace->fullscreen->type == SWAY_VIEW_XWAYLAND) {
287 render_unmanaged(output,
288 &root_container.sway_root->xwayland_unmanaged);
289 }
285 } else { 290 } else {
286 float clear_color[] = {0.25f, 0.25f, 0.25f, 1.0f}; 291 float clear_color[] = {0.25f, 0.25f, 0.25f, 1.0f};
287 wlr_renderer_clear(renderer, clear_color); 292 wlr_renderer_clear(renderer, clear_color);