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>
This commit is contained in:
Michael Weiser 2020-02-17 22:06:16 +01:00 committed by Brian Ashworth
parent 27d5cf1316
commit ef9c597fcb
1 changed files with 1 additions and 1 deletions

View File

@ -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
};
/**