sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 98576b9ddab61998f92ada497e0d8affa0cb1205
parent 312d009f656e86401cda1c6198b929e4cbd85d2f
Author: Ian Fan <ianfan0@gmail.com>
Date:   Mon, 24 Sep 2018 18:55:52 +0100

swaybar: fix setting binding mode indicator

Diffstat:
Msway/commands/bar/binding_mode_indicator.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sway/commands/bar/binding_mode_indicator.c b/sway/commands/bar/binding_mode_indicator.c @@ -21,7 +21,9 @@ struct cmd_results *bar_cmd_binding_mode_indicator(int argc, char **argv) { config->current_bar->binding_mode_indicator = false; wlr_log(WLR_DEBUG, "Disabling binding mode indicator on bar: %s", config->current_bar->id); + } else { + return cmd_results_new(CMD_INVALID, "binding_mode_indicator", + "Invalid value %s", argv[0]); } - return cmd_results_new(CMD_INVALID, "binding_mode_indicator", - "Invalid value %s", argv[0]); + return cmd_results_new(CMD_SUCCESS, NULL, NULL); }