commit bd67342bdc82d53bbe492e9ac515600d4a649bc9
parent 777800e37ab84de9deb64586d8155a9eb600b4c2
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date: Fri, 20 Apr 2018 08:08:34 +1000
Don't render top layer when fullscreen.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
@@ -292,8 +292,8 @@ static void render_output(struct sway_output *output, struct timespec *when,
render_container(output, workspace);
render_unmanaged(output, &root_container.sway_root->xwayland_unmanaged);
+ render_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]);
}
- render_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]);
render_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY]);
renderer_end: