diff options
author | Drew DeVault <[email protected]> | 2016-08-01 07:27:12 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2016-08-01 07:27:12 -0400 |
commit | 2d907ef1f6f13a7921c295502d7b1047945cc327 (patch) | |
tree | f9326301b2dddf573d37612c7926dcb6248c913f /sway/commands.c | |
parent | c6f9767487282cb68c0496ca7115a3acc4a4d6e2 (diff) | |
parent | fe608c80ae66d77f826ca077bd1c6a4fa7db3dd6 (diff) |
Merge pull request #811 from acrisci/feature/focus-container
Implement focus handling for containers
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index f0c9cc52..f73bd21c 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -2340,7 +2340,7 @@ static struct cmd_results *_do_split(int argc, char **argv, int layout) { // update container title if tabbed/stacked if (swayc_tabbed_stacked_ancestor(focused)) { - update_view_border(focused); + update_container_border(focused); swayc_t *output = swayc_parent_by_type(focused, C_OUTPUT); // schedule render to make changes take effect right away, // otherwise we would have to wait for the view to render, |