diff options
| author | Brian Ashworth <bosrsf04@gmail.com> | 2019-08-06 04:21:44 -0400 | 
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2019-08-14 13:19:16 +0900 | 
| commit | f36240208c57124a88cdee18fb81fa3fc69e0f0a (patch) | |
| tree | ea5646d0f39ac2dff3e1117cb3abe844a1959db4 /sway | |
| parent | 75a7b02529bc1e3d77b46200ab1d2028929fb5fe (diff) | |
| download | sway-f36240208c57124a88cdee18fb81fa3fc69e0f0a.tar.xz | |
workspace_split: focus middle if workspace focused
In workspace_split, the middle container that wraps the workspace's
children should be focused for any seat that is focusing the workspace
Diffstat (limited to 'sway')
| -rw-r--r-- | sway/tree/workspace.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c index 3ad5de06..5568d1f5 100644 --- a/sway/tree/workspace.c +++ b/sway/tree/workspace.c @@ -763,6 +763,13 @@ struct sway_container *workspace_split(struct sway_workspace *workspace,  	workspace->layout = layout;  	middle->layout = old_layout; +	struct sway_seat *seat; +	wl_list_for_each(seat, &server.input->seats, link) { +		if (seat_get_focus(seat) == &workspace->node) { +			seat_set_focus(seat, &middle->node); +		} +	} +  	return middle;  } | 
