diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-15 05:01:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-15 05:01:25 -0700 |
commit | 53e3f35ba348d6285478ceb4a93b020e138c95c7 (patch) | |
tree | 091c6133f3bd33b64b1853c7984eaa3921b9facf /sway/commands/split.c | |
parent | 806c06fdfbbf1734f2df74b85d861bf0bc13f48e (diff) | |
parent | 6b2dc7e63b3a602b29c47e3b70bc7890c063dcf4 (diff) |
Merge pull request #2272 from RyanDwyer/simplify-transactions
Simplify transactions by using a dirty flag on containers
Diffstat (limited to 'sway/commands/split.c')
-rw-r--r-- | sway/commands/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c index c40f4d9f..313799da 100644 --- a/sway/commands/split.c +++ b/sway/commands/split.c @@ -16,7 +16,7 @@ static struct cmd_results *do_split(int layout) { } struct sway_container *parent = container_split(con, layout); container_create_notify(parent); - arrange_and_commit(parent->parent); + arrange_windows(parent->parent); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |