aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/layer_shell.c
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2019-10-23 19:39:47 +0200
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-10-27 11:07:18 -0400
commitad078865438845f1f4732f05414d1fdd3a69560e (patch)
tree480a8bc4fb144d00e4e137570ef93a4da7bde298 /sway/desktop/layer_shell.c
parentcriteria: make literal comparison for __focused__ values (diff)
downloadsway-ad078865438845f1f4732f05414d1fdd3a69560e.tar.gz
sway-ad078865438845f1f4732f05414d1fdd3a69560e.tar.zst
sway-ad078865438845f1f4732f05414d1fdd3a69560e.zip
Handle layer changes for layer shell surfaces
Closes: https://github.com/swaywm/sway/issues/4644 References: https://github.com/emersion/rootston/commit/1982106c9b0fbd48ee9fe20e013524125f6ca3cf
Diffstat (limited to 'sway/desktop/layer_shell.c')
-rw-r--r--sway/desktop/layer_shell.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 5f2b74cd..9289bb4a 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -277,7 +277,17 @@ static void handle_surface_commit(struct wl_listener *listener, void *data) {
277 struct sway_output *output = wlr_output->data; 277 struct sway_output *output = wlr_output->data;
278 struct wlr_box old_geo = layer->geo; 278 struct wlr_box old_geo = layer->geo;
279 arrange_layers(output); 279 arrange_layers(output);
280 if (memcmp(&old_geo, &layer->geo, sizeof(struct wlr_box)) != 0) { 280
281 bool geo_changed =
282 memcmp(&old_geo, &layer->geo, sizeof(struct wlr_box)) != 0;
283 bool layer_changed = layer->layer != layer_surface->current.layer;
284 if (layer_changed) {
285 wl_list_remove(&layer->link);
286 wl_list_insert(&output->layers[layer_surface->current.layer],
287 &layer->link);
288 layer->layer = layer_surface->current.layer;
289 }
290 if (geo_changed || layer_changed) {
281 output_damage_surface(output, old_geo.x, old_geo.y, 291 output_damage_surface(output, old_geo.x, old_geo.y,
282 layer_surface->surface, true); 292 layer_surface->surface, true);
283 output_damage_surface(output, layer->geo.x, layer->geo.y, 293 output_damage_surface(output, layer->geo.x, layer->geo.y,