commit 6f0a1cdcd1c4b77aab062670e5522ebc1e956208 parent f6e65b6bb235cd77329e961e180e2236312ebacc Author: Drew DeVault <sir@cmpwn.com> Date: Sun, 9 Aug 2015 23:13:39 -0400 Or maybe do the exact opposite of that Diffstat:
| M | sway/handlers.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/handlers.c b/sway/handlers.c @@ -74,7 +74,7 @@ bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifiers } if (match) { - ret = handle_command(config, binding->command) == 0; + ret = handle_command(config, binding->command) != 0; } } }