diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-08-18 14:24:20 -0700 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-08-18 14:24:20 -0700 |
| commit | b12b59f1e8935af1888faac0f13bc50cd0ddcc39 (patch) | |
| tree | b3a730673fb5eabac86b93bc4a13abba8ae1f56e | |
| parent | 188f8e127124805fcd47073ce070eddc94f60886 (diff) | |
A layer-shell will only be focused if it is non-null
| -rw-r--r-- | sway/desktop/layer_shell.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c index f1f79c1b..a6239bea 100644 --- a/sway/desktop/layer_shell.c +++ b/sway/desktop/layer_shell.c @@ -212,7 +212,9 @@ void arrange_layers(struct sway_output *output) { struct sway_seat *seat; wl_list_for_each(seat, &server.input->seats, link) { - seat_set_focus_layer(seat, topmost ? topmost->layer_surface : NULL); + if (topmost != NULL) { + seat_set_focus_layer(seat, topmost->layer_surface); + } } } |
