aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/client.c')
-rw-r--r--sway/commands/client.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sway/commands/client.c b/sway/commands/client.c
index 77263145..7a9cff2c 100644
--- a/sway/commands/client.c
+++ b/sway/commands/client.c
@@ -5,9 +5,8 @@
#include "sway/tree/container.h"
#include "util.h"
-static void rebuild_textures_iterator(struct sway_container *con, void *data) {
- container_update_marks_textures(con);
- container_update_title_textures(con);
+static void container_update_iterator(struct sway_container *con, void *data) {
+ container_update(con);
}
static struct cmd_results *handle_command(int argc, char **argv, char *cmd_name,
@@ -51,7 +50,7 @@ static struct cmd_results *handle_command(int argc, char **argv, char *cmd_name,
memcpy(class, &colors, sizeof(struct border_colors));
if (config->active) {
- root_for_each_container(rebuild_textures_iterator, NULL);
+ root_for_each_container(container_update_iterator, NULL);
for (int i = 0; i < root->outputs->length; ++i) {
struct sway_output *output = root->outputs->items[i];