aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Weiser <michael.weiser@gmx.de>2020-02-17 22:06:16 +0100
committerBrian Ashworth <bosrsf04@gmail.com>2020-03-11 23:51:37 -0400
commitef9c597fcb1b48482d2fd16f16316af286640616 (patch)
treedde6f5de6d653e2077633d2f9d27a7b573f62305 /include
parent27d5cf131608594788b3755059391d4b78c072b7 (diff)
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 (limited to 'include')
-rw-r--r--include/sway/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 0a2661dd..5f02e44f 100644
--- 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
};
/**