diff options
| author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-04 11:31:07 +1000 | 
|---|---|---|
| committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-04 11:31:07 +1000 | 
| commit | 9253278328524e4f483a66aa54ed11fd8538ace8 (patch) | |
| tree | 8a43d800d5a5ba840af923517bedc138b971f0da /sway/desktop/layer_shell.c | |
| parent | 74799937cf95205c2ff16da9dc7dcaea47ce7116 (diff) | |
| download | sway-9253278328524e4f483a66aa54ed11fd8538ace8.tar.xz | |
Restore focus when unmapping layer shell surfaces
Diffstat (limited to 'sway/desktop/layer_shell.c')
| -rw-r--r-- | sway/desktop/layer_shell.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c index b60aa487..2d355b74 100644 --- a/sway/desktop/layer_shell.c +++ b/sway/desktop/layer_shell.c @@ -257,6 +257,11 @@ static void unmap(struct sway_layer_surface *sway_layer) {  	}  	output_damage_surface(output, sway_layer->geo.x, sway_layer->geo.y,  		sway_layer->layer_surface->surface, true); + +	struct sway_seat *seat = input_manager_current_seat(input_manager); +	if (seat->focused_layer == sway_layer->layer_surface) { +		seat_set_focus_layer(seat, NULL); +	}  }  static void handle_destroy(struct wl_listener *listener, void *data) {  | 
