diff options
author | famfo <[email protected]> | 2024-01-05 11:43:07 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-05 12:43:07 +0100 |
commit | f0ecffe593574593ec99c104fa12e4bfd593b0f2 (patch) | |
tree | e158fe7e94877b1a0198a7cd09df72a705b983d6 | |
parent | 303b7dfb69fbd93a6d829213e52818844cd5645f (diff) |
Fix shadow_offset position (#263)
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index 5ce714e6..8b326547 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -100,8 +100,8 @@ static const struct cmd_handler handlers[] = { { "set", cmd_set }, { "shadow_blur_radius", cmd_shadow_blur_radius }, { "shadow_color", cmd_shadow_color }, - { "shadow_offset", cmd_shadow_offset }, { "shadow_inactive_color", cmd_shadow_inactive_color }, + { "shadow_offset", cmd_shadow_offset }, { "shadows", cmd_shadows }, { "shadows_on_csd", cmd_shadows_on_csd }, { "show_marks", cmd_show_marks }, |