summaryrefslogtreecommitdiff
path: root/sway/commands/shadows.c
diff options
context:
space:
mode:
authorErik Reider <[email protected]>2023-05-19 21:14:06 +0200
committerGitHub <[email protected]>2023-05-19 21:14:06 +0200
commit415e072a3af292937f0b4c41acadafaee6958437 (patch)
tree354de329d9cbf66054260d50aebefd86a26d5055 /sway/commands/shadows.c
parent67078429428f0a97333c107da8a3ad8fb678a602 (diff)
Add blur, shadow, and corner radius to layer-shell surfaces (#144)
Co-authored-by: Will McKinnon <[email protected]>
Diffstat (limited to 'sway/commands/shadows.c')
-rw-r--r--sway/commands/shadows.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/shadows.c b/sway/commands/shadows.c
index 2b57b2e6..ae7fc019 100644
--- a/sway/commands/shadows.c
+++ b/sway/commands/shadows.c
@@ -17,7 +17,7 @@ struct cmd_results *cmd_shadows(int argc, char **argv) {
struct sway_container *con = config->handler_context.container;
- bool result = parse_boolean(argv[0], config->shadow_enabled);
+ bool result = parse_boolean(argv[0], true);
if (con == NULL) {
config->shadow_enabled = result;
} else {