diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-07-24 19:23:04 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 19:23:04 +1000 |
commit | e02a6718c2c7313309b45e499034d614ee6207fc (patch) | |
tree | 429de47906f0ba1f114689c48cbabc5be8bb6e71 /sway/commands/focus_follows_mouse.c | |
parent | 94dd8823a0081f7983dce368d5d093d1d3eeaefe (diff) | |
parent | 6ccf2a2c66c1264450a4b3ab3dd344e1b3b44ca3 (diff) | |
download | sway-e02a6718c2c7313309b45e499034d614ee6207fc.tar.xz |
Merge branch 'master' into mouse-bindings
Diffstat (limited to 'sway/commands/focus_follows_mouse.c')
-rw-r--r-- | sway/commands/focus_follows_mouse.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/commands/focus_follows_mouse.c b/sway/commands/focus_follows_mouse.c index 661e7852..0b0e334c 100644 --- a/sway/commands/focus_follows_mouse.c +++ b/sway/commands/focus_follows_mouse.c @@ -1,12 +1,14 @@ #include <string.h> #include <strings.h> #include "sway/commands.h" +#include "util.h" struct cmd_results *cmd_focus_follows_mouse(int argc, char **argv) { struct cmd_results *error = NULL; if ((error = checkarg(argc, "focus_follows_mouse", EXPECTED_EQUAL_TO, 1))) { return error; } - config->focus_follows_mouse = !strcasecmp(argv[0], "yes"); + config->focus_follows_mouse = + parse_boolean(argv[0], config->focus_follows_mouse); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |