aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/layer_shell.c
diff options
context:
space:
mode:
authorLibravatar Armin Preiml <apreiml@strohwolke.at>2018-09-10 11:23:08 +0200
committerLibravatar Armin Preiml <apreiml@strohwolke.at>2018-09-10 11:23:08 +0200
commit47b6fea3fe3c237fde8cc82842f38e001562b36a (patch)
tree61e1a9d3c8ba26110083d02332479ddeba1cfbdc /sway/desktop/layer_shell.c
parentMerge pull request #2530 from apreiml/ipc_missing_get_tree (diff)
downloadsway-47b6fea3fe3c237fde8cc82842f38e001562b36a.tar.gz
sway-47b6fea3fe3c237fde8cc82842f38e001562b36a.tar.zst
sway-47b6fea3fe3c237fde8cc82842f38e001562b36a.zip
handle_layer_shell_surface: Do not crash if seat doesn't have focus
Diffstat (limited to 'sway/desktop/layer_shell.c')
-rw-r--r--sway/desktop/layer_shell.c5
1 files changed, 4 insertions, 1 deletions
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) {
337 struct sway_seat *seat = input_manager_get_default_seat(input_manager); 337 struct sway_seat *seat = input_manager_get_default_seat(input_manager);
338 if (seat) { 338 if (seat) {
339 struct sway_workspace *ws = seat_get_focused_workspace(seat); 339 struct sway_workspace *ws = seat_get_focused_workspace(seat);
340 output = ws->output; 340
341 if (ws != NULL) {
342 output = ws->output;
343 }
341 } 344 }
342 if (!output) { 345 if (!output) {
343 if (!sway_assert(root->outputs->length, 346 if (!sway_assert(root->outputs->length,