From d19f4f7bf866660d2199cb726bc3708eb42f98dd Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 16 Oct 2019 10:24:15 -0400 Subject: Updates per wlroots layer shell changes --- sway/desktop/layer_shell.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sway/desktop/layer_shell.c') diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c index a9803d21..5f2b74cd 100644 --- a/sway/desktop/layer_shell.c +++ b/sway/desktop/layer_shell.c @@ -487,7 +487,9 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) { struct wlr_layer_surface_v1 *layer_surface = data; sway_log(SWAY_DEBUG, "new layer surface: namespace %s layer %d anchor %d " "size %dx%d margin %d,%d,%d,%d", - layer_surface->namespace, layer_surface->layer, layer_surface->layer, + layer_surface->namespace, + layer_surface->client_pending.layer, + layer_surface->client_pending.layer, layer_surface->client_pending.desired_width, layer_surface->client_pending.desired_height, layer_surface->client_pending.margin.top, @@ -544,7 +546,8 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) { sway_layer->output_destroy.notify = handle_output_destroy; wl_signal_add(&output->events.destroy, &sway_layer->output_destroy); - wl_list_insert(&output->layers[layer_surface->layer], &sway_layer->link); + wl_list_insert(&output->layers[layer_surface->client_pending.layer], + &sway_layer->link); // Temporarily set the layer's current state to client_pending // So that we can easily arrange it -- cgit v1.2.3-54-g00ecf