sway

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

commit ef9c597fcb1b48482d2fd16f16316af286640616
parent 27d5cf131608594788b3755059391d4b78c072b7
Author: Michael Weiser <michael.weiser@gmx.de>
Date:   Mon, 17 Feb 2020 22:06:16 +0100

config: Fix typo in reload bindsym flag bitmask

Fix a typo in the bit mask value of the BINDING_RELOAD flag introduced
in commit 152e30c37 so it can work as intended.

Signed-off-by: Michael Weiser <michael.weiser@gmx.de>

Diffstat:
Minclude/sway/config.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/sway/config.h b/include/sway/config.h @@ -39,7 +39,7 @@ enum binding_flags { BINDING_CONTENTS=8, // mouse only; trigger on container contents BINDING_TITLEBAR=16, // mouse only; trigger on container titlebar BINDING_CODE=32, // keyboard only; convert keysyms into keycodes - BINDING_RELOAD=62, // switch only; (re)trigger binding on reload + BINDING_RELOAD=64, // switch only; (re)trigger binding on reload }; /**