aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/arrange.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-27 17:46:03 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-27 17:46:03 +1000
commitbe86d3aba602fef7b51fafa8a6e7a39d1e49817f (patch)
treeba4e3debd236eb39337cd4f59772b2eaf260195f /sway/tree/arrange.c
parentFix nitpicks (diff)
downloadsway-be86d3aba602fef7b51fafa8a6e7a39d1e49817f.tar.gz
sway-be86d3aba602fef7b51fafa8a6e7a39d1e49817f.tar.zst
sway-be86d3aba602fef7b51fafa8a6e7a39d1e49817f.zip
Remove transaction_add_damage
Instead, damage each container when applying the transaction.
Diffstat (limited to 'sway/tree/arrange.c')
-rw-r--r--sway/tree/arrange.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sway/tree/arrange.c b/sway/tree/arrange.c
index cb3f8ba2..582b2891 100644
--- a/sway/tree/arrange.c
+++ b/sway/tree/arrange.c
@@ -304,15 +304,6 @@ void arrange_windows(struct sway_container *container,
304 case C_TYPES: 304 case C_TYPES:
305 break; 305 break;
306 } 306 }
307 // Add damage for whatever container arrange_windows() was called with,
308 // unless it was called with the special floating container, in which case
309 // we'll damage the entire output.
310 if (container->type == C_CONTAINER && container->layout == L_FLOATING) {
311 struct sway_container *output = container_parent(container, C_OUTPUT);
312 transaction_add_damage(transaction, container_get_box(output));
313 } else {
314 transaction_add_damage(transaction, container_get_box(container));
315 }
316 add_deleted_containers(transaction); 307 add_deleted_containers(transaction);
317} 308}
318 309