From 47b6fea3fe3c237fde8cc82842f38e001562b36a Mon Sep 17 00:00:00 2001 From: Armin Preiml Date: Mon, 10 Sep 2018 11:23:08 +0200 Subject: handle_layer_shell_surface: Do not crash if seat doesn't have focus --- sway/desktop/layer_shell.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c index 7d254173..076bacc4 100644 --- a/sway/desktop/layer_shell.c +++ b/sway/desktop/layer_shell.c @@ -337,7 +337,10 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) { struct sway_seat *seat = input_manager_get_default_seat(input_manager); if (seat) { struct sway_workspace *ws = seat_get_focused_workspace(seat); - output = ws->output; + + if (ws != NULL) { + output = ws->output; + } } if (!output) { if (!sway_assert(root->outputs->length, -- cgit v1.2.3-70-g09d2