aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/layer_shell.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-05-07 17:24:33 +0100
committerLibravatar emersion <contact@emersion.fr>2018-05-10 12:19:38 +0100
commit3d29e73e72d772763a4a9e50ec4c857ef716f29a (patch)
tree168563dece0a3015e51891d7e169200eef997c92 /sway/desktop/layer_shell.c
parentMerge pull request #1947 from dlrobertson/fix_null_deref (diff)
downloadsway-3d29e73e72d772763a4a9e50ec4c857ef716f29a.tar.gz
sway-3d29e73e72d772763a4a9e50ec4c857ef716f29a.tar.zst
sway-3d29e73e72d772763a4a9e50ec4c857ef716f29a.zip
layer-shell: use usable_area when arranging non-exclusive layer surfaces
Diffstat (limited to 'sway/desktop/layer_shell.c')
-rw-r--r--sway/desktop/layer_shell.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index c904880d..b60aa487 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -180,9 +180,6 @@ void arrange_layers(struct sway_output *output) {
180 } 180 }
181 181
182 // Arrange non-exlusive surfaces from top->bottom 182 // Arrange non-exlusive surfaces from top->bottom
183 usable_area.x = usable_area.y = 0;
184 wlr_output_effective_resolution(output->wlr_output,
185 &usable_area.width, &usable_area.height);
186 arrange_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY], 183 arrange_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY],
187 &usable_area, false); 184 &usable_area, false);
188 arrange_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP], 185 arrange_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP],