sway: redraw container after the sticky command is executed

This commit is contained in:
qiu-x 2022-10-13 10:52:10 +02:00
parent 62c1fdc4bf
commit 9382e5b757

View file

@ -44,7 +44,7 @@ struct cmd_results *cmd_sticky(int argc, char **argv) {
workspace_consider_destroy(old_workspace); workspace_consider_destroy(old_workspace);
} }
} }
container_update_representation(container); container_damage_whole(container);
return cmd_results_new(CMD_SUCCESS, NULL); return cmd_results_new(CMD_SUCCESS, NULL);
} }