1
0
Fork 0
forked from wry/wry

Set top layer surfaces below fullscreen windows

This commit is contained in:
Mostafa Ibrahim 2025-06-21 17:39:56 +03:00 committed by Julian Orth
parent ae9fb541f4
commit 5c30a9da27
2 changed files with 4 additions and 4 deletions

View file

@ -86,6 +86,7 @@ impl Renderer<'_> {
} else {
render_layer!(output.layers[0]);
render_layer!(output.layers[1]);
render_layer!(output.layers[2]);
let non_exclusive_rect = output.non_exclusive_rect_rel.get();
let (x, y) = non_exclusive_rect.translate_inv(x, y);
{
@ -182,7 +183,6 @@ impl Renderer<'_> {
};
}
render_stacked!(self.state.root.stacked);
render_layer!(output.layers[2]);
render_layer!(output.layers[3]);
render_stacked!(self.state.root.stacked_above_layers);
if let Some(ws) = output.workspace.get()