aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/opacity.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/opacity.c')
-rw-r--r--sway/commands/opacity.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/opacity.c b/sway/commands/opacity.c
index 96e6228e..610cecc6 100644
--- a/sway/commands/opacity.c
+++ b/sway/commands/opacity.c
@@ -37,6 +37,7 @@ struct cmd_results *cmd_opacity(int argc, char **argv) {
37 } 37 }
38 38
39 con->alpha = val; 39 con->alpha = val;
40 container_damage_whole(con); 40 container_update(con);
41
41 return cmd_results_new(CMD_SUCCESS, NULL); 42 return cmd_results_new(CMD_SUCCESS, NULL);
42} 43}