diff options
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c index 08d3f09d..11284577 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -2768,10 +2768,10 @@ static struct cmd_results *bar_cmd_pango_markup(int argc, char **argv) { return cmd_results_new(CMD_FAILURE, "pango_markup", "No bar defined."); } - if (strcasecmp("pango", argv[0]) == 0) { + if (strcasecmp("enabled", argv[0]) == 0) { config->current_bar->pango_markup = true; sway_log(L_DEBUG, "Enabling pango markup for bar: %s", config->current_bar->id); - } else if (strcasecmp("none", argv[0]) == 0) { + } else if (strcasecmp("disabled", argv[0]) == 0) { config->current_bar->pango_markup = false; sway_log(L_DEBUG, "Disabling pango markup for bar: %s", config->current_bar->id); } else { |