summaryrefslogtreecommitdiffstats
path: root/sway/desktop/layer_shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/layer_shell.c')
-rw-r--r--sway/desktop/layer_shell.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 91baa6f8..a7d96717 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -325,12 +325,6 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
325 layer_surface->client_pending.margin.bottom, 325 layer_surface->client_pending.margin.bottom,
326 layer_surface->client_pending.margin.left); 326 layer_surface->client_pending.margin.left);
327 327
328 struct sway_layer_surface *sway_layer =
329 calloc(1, sizeof(struct sway_layer_surface));
330 if (!sway_layer) {
331 return;
332 }
333
334 if (!layer_surface->output) { 328 if (!layer_surface->output) {
335 // Assign last active output 329 // Assign last active output
336 struct sway_container *output = NULL; 330 struct sway_container *output = NULL;
@@ -352,6 +346,12 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
352 layer_surface->output = output->sway_output->wlr_output; 346 layer_surface->output = output->sway_output->wlr_output;
353 } 347 }
354 348
349 struct sway_layer_surface *sway_layer =
350 calloc(1, sizeof(struct sway_layer_surface));
351 if (!sway_layer) {
352 return;
353 }
354
355 sway_layer->surface_commit.notify = handle_surface_commit; 355 sway_layer->surface_commit.notify = handle_surface_commit;
356 wl_signal_add(&layer_surface->surface->events.commit, 356 wl_signal_add(&layer_surface->surface->events.commit,
357 &sway_layer->surface_commit); 357 &sway_layer->surface_commit);