aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/wrap_scroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/wrap_scroll.c')
-rw-r--r--sway/commands/bar/wrap_scroll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/bar/wrap_scroll.c b/sway/commands/bar/wrap_scroll.c
index 2f7bb090..decd238d 100644
--- a/sway/commands/bar/wrap_scroll.c
+++ b/sway/commands/bar/wrap_scroll.c
@@ -15,10 +15,10 @@ struct cmd_results *bar_cmd_wrap_scroll(int argc, char **argv) {
15 config->current_bar->wrap_scroll = 15 config->current_bar->wrap_scroll =
16 parse_boolean(argv[0], config->current_bar->wrap_scroll); 16 parse_boolean(argv[0], config->current_bar->wrap_scroll);
17 if (config->current_bar->wrap_scroll) { 17 if (config->current_bar->wrap_scroll) {
18 wlr_log(WLR_DEBUG, "Enabling wrap scroll on bar: %s", 18 sway_log(SWAY_DEBUG, "Enabling wrap scroll on bar: %s",
19 config->current_bar->id); 19 config->current_bar->id);
20 } else { 20 } else {
21 wlr_log(WLR_DEBUG, "Disabling wrap scroll on bar: %s", 21 sway_log(SWAY_DEBUG, "Disabling wrap scroll on bar: %s",
22 config->current_bar->id); 22 config->current_bar->id);
23 } 23 }
24 return cmd_results_new(CMD_SUCCESS, NULL); 24 return cmd_results_new(CMD_SUCCESS, NULL);