aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/reload.c
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <alex@ozal.ski>2023-11-21 19:51:57 -0500
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit6d7b1321db54155cf78305dbafdcfc7de9b78415 (patch)
treeacf9f02681b1d5a40416be5f4151641920176a93 /sway/commands/reload.c
parentscene_graph: Port layer_shell (diff)
downloadsway-6d7b1321db54155cf78305dbafdcfc7de9b78415.tar.gz
sway-6d7b1321db54155cf78305dbafdcfc7de9b78415.tar.zst
sway-6d7b1321db54155cf78305dbafdcfc7de9b78415.zip
scene_graph: Port container server side decorations
Diffstat (limited to 'sway/commands/reload.c')
-rw-r--r--sway/commands/reload.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sway/commands/reload.c b/sway/commands/reload.c
index 76f14bba..82967ca7 100644
--- a/sway/commands/reload.c
+++ b/sway/commands/reload.c
@@ -9,9 +9,8 @@
9#include "list.h" 9#include "list.h"
10#include "log.h" 10#include "log.h"
11 11
12static void rebuild_textures_iterator(struct sway_container *con, void *data) { 12static void title_bar_update_iterator(struct sway_container *con, void *data) {
13 container_update_marks_textures(con); 13 container_update_title_bar(con);
14 container_update_title_textures(con);
15} 14}
16 15
17static void do_reload(void *data) { 16static void do_reload(void *data) {
@@ -48,7 +47,7 @@ static void do_reload(void *data) {
48 } 47 }
49 list_free_items_and_destroy(bar_ids); 48 list_free_items_and_destroy(bar_ids);
50 49
51 root_for_each_container(rebuild_textures_iterator, NULL); 50 root_for_each_container(title_bar_update_iterator, NULL);
52 51
53 arrange_root(); 52 arrange_root();
54} 53}