mirror of
https://github.com/swaywm/sway
synced 2024-11-18 19:03:59 +01:00
Merge pull request #1846 from RyanDwyer/fullscreen-xwayland-unmanaged
Render unmanaged xwayland views when an xwayland view is fullscreen
This commit is contained in:
commit
778b90d13e
@ -282,6 +282,11 @@ static void render_output(struct sway_output *output, struct timespec *when,
|
||||
wlr_renderer_clear(renderer, clear_color);
|
||||
// TODO: handle views smaller than the output
|
||||
render_container(output, workspace->sway_workspace->fullscreen->swayc);
|
||||
|
||||
if (workspace->sway_workspace->fullscreen->type == SWAY_VIEW_XWAYLAND) {
|
||||
render_unmanaged(output,
|
||||
&root_container.sway_root->xwayland_unmanaged);
|
||||
}
|
||||
} else {
|
||||
float clear_color[] = {0.25f, 0.25f, 0.25f, 1.0f};
|
||||
wlr_renderer_clear(renderer, clear_color);
|
||||
|
Loading…
Reference in New Issue
Block a user