aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/title_align.c
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <orzechowski.alexander@gmail.com>2023-04-06 22:23:53 +0200
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit1e018e72b4d57c8f354b9be9686a7a75797cdcab (patch)
tree46e6c588d30ddfc43793d1980b38b8d53bf9bdd7 /sway/commands/title_align.c
parentscene_graph: Port view saved buffers (diff)
downloadsway-1e018e72b4d57c8f354b9be9686a7a75797cdcab.tar.gz
sway-1e018e72b4d57c8f354b9be9686a7a75797cdcab.tar.zst
sway-1e018e72b4d57c8f354b9be9686a7a75797cdcab.zip
Delete old damage tracking code
The new scene graph abstraction handles this for us.
Diffstat (limited to 'sway/commands/title_align.c')
-rw-r--r--sway/commands/title_align.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sway/commands/title_align.c b/sway/commands/title_align.c
index 7f5dd3ae..be298a29 100644
--- a/sway/commands/title_align.c
+++ b/sway/commands/title_align.c
@@ -27,10 +27,5 @@ struct cmd_results *cmd_title_align(int argc, char **argv) {
27 27
28 root_for_each_container(arrange_title_bar_iterator, NULL); 28 root_for_each_container(arrange_title_bar_iterator, NULL);
29 29
30 for (int i = 0; i < root->outputs->length; ++i) {
31 struct sway_output *output = root->outputs->items[i];
32 output_damage_whole(output);
33 }
34
35 return cmd_results_new(CMD_SUCCESS, NULL); 30 return cmd_results_new(CMD_SUCCESS, NULL);
36} 31}