aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/reload.c
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2023-11-21 19:51:57 -0500
committerKirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit6d7b1321db54155cf78305dbafdcfc7de9b78415 (patch)
treeacf9f02681b1d5a40416be5f4151641920176a93 /sway/commands/reload.c
parent188811f80861caacd016b857b0d07f6d2d62d15a (diff)
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 @@
#include "list.h"
#include "log.h"
-static void rebuild_textures_iterator(struct sway_container *con, void *data) {
- container_update_marks_textures(con);
- container_update_title_textures(con);
+static void title_bar_update_iterator(struct sway_container *con, void *data) {
+ container_update_title_bar(con);
}
static void do_reload(void *data) {
@@ -48,7 +47,7 @@ static void do_reload(void *data) {
}
list_free_items_and_destroy(bar_ids);
- root_for_each_container(rebuild_textures_iterator, NULL);
+ root_for_each_container(title_bar_update_iterator, NULL);
arrange_root();
}