sway

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

commit 705230a26c09c578960b90d1c226680aad0b359d
parent a056419ad720e20fdc04f3a7d05bce62fa639755
Author: frsfnrrg <frsfnrrg@users.noreply.github.com>
Date:   Thu, 31 May 2018 19:54:31 -0400

Fix binding bindcode flag initialization

Diffstat:
Msway/commands/bind.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/commands/bind.c b/sway/commands/bind.c @@ -86,7 +86,7 @@ static struct cmd_results * cmd_bindsym_or_bindcode(int argc, char **argv, bool binding->modifiers = 0; binding->release = false; binding->locked = false; - binding->bindcode = false; + binding->bindcode = bindcode; // Handle --release and --locked while (argc > 0) {