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/swap.c | |
parent | 806c06fdfbbf1734f2df74b85d861bf0bc13f48e (diff) | |
parent | 6b2dc7e63b3a602b29c47e3b70bc7890c063dcf4 (diff) | |
download | sway-53e3f35ba348d6285478ceb4a93b020e138c95c7.tar.xz |
Merge pull request #2272 from RyanDwyer/simplify-transactions
Simplify transactions by using a dirty flag on containers
Diffstat (limited to 'sway/commands/swap.c')
-rw-r--r-- | sway/commands/swap.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sway/commands/swap.c b/sway/commands/swap.c index e052058f..2fc88308 100644 --- a/sway/commands/swap.c +++ b/sway/commands/swap.c @@ -1,7 +1,6 @@ #include <strings.h> #include <wlr/util/log.h> #include "sway/commands.h" -#include "sway/desktop/transaction.h" #include "sway/tree/arrange.h" #include "sway/tree/layout.h" #include "sway/tree/view.h" @@ -79,14 +78,10 @@ struct cmd_results *cmd_swap(int argc, char **argv) { container_swap(current, other); - struct sway_transaction *txn = transaction_create(); - arrange_windows(current->parent, txn); - + arrange_windows(current->parent); if (other->parent != current->parent) { - arrange_windows(other->parent, txn); + arrange_windows(other->parent); } - transaction_commit(txn); - return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |