aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/transaction.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-11 11:03:43 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-11 11:03:43 +1000
commit9e96cfd310c4e5dc60f07d772e60b139ff7dc448 (patch)
tree9961c8705208b2f127133f0533bd305a6f75015e /sway/desktop/transaction.c
parentRefactor everything that needs to arrange windows (diff)
parentMerge pull request #2124 from emersion/drag-icons (diff)
downloadsway-9e96cfd310c4e5dc60f07d772e60b139ff7dc448.tar.gz
sway-9e96cfd310c4e5dc60f07d772e60b139ff7dc448.tar.zst
sway-9e96cfd310c4e5dc60f07d772e60b139ff7dc448.zip
Merge remote-tracking branch 'upstream/master' into atomic
Diffstat (limited to 'sway/desktop/transaction.c')
-rw-r--r--sway/desktop/transaction.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c
index ee9883e2..07bfbf7a 100644
--- a/sway/desktop/transaction.c
+++ b/sway/desktop/transaction.c
@@ -82,6 +82,10 @@ void transaction_add_container(struct sway_transaction *transaction,
82 state->swayc_y = container->y; 82 state->swayc_y = container->y;
83 state->swayc_width = container->width; 83 state->swayc_width = container->width;
84 state->swayc_height = container->height; 84 state->swayc_height = container->height;
85 state->has_gaps = container->has_gaps;
86 state->current_gaps = container->current_gaps;
87 state->gaps_inner = container->gaps_inner;
88 state->gaps_outer = container->gaps_outer;
85 89
86 if (container->type == C_VIEW) { 90 if (container->type == C_VIEW) {
87 struct sway_view *view = container->sway_view; 91 struct sway_view *view = container->sway_view;