From 9382e5b7573a65ee711d5b5f679e8e2cce30b6e8 Mon Sep 17 00:00:00 2001 From: qiu-x Date: Thu, 13 Oct 2022 10:52:10 +0200 Subject: [PATCH] sway: redraw container after the sticky command is executed --- sway/commands/sticky.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/commands/sticky.c b/sway/commands/sticky.c index 200995539..7ab74c42c 100644 --- a/sway/commands/sticky.c +++ b/sway/commands/sticky.c @@ -44,7 +44,7 @@ struct cmd_results *cmd_sticky(int argc, char **argv) { workspace_consider_destroy(old_workspace); } } - container_update_representation(container); + container_damage_whole(container); return cmd_results_new(CMD_SUCCESS, NULL); }