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:
parent
27d5cf1316
commit
ef9c597fcb
|
@ -39,7 +39,7 @@ enum binding_flags {
|
||||||
BINDING_CONTENTS=8, // mouse only; trigger on container contents
|
BINDING_CONTENTS=8, // mouse only; trigger on container contents
|
||||||
BINDING_TITLEBAR=16, // mouse only; trigger on container titlebar
|
BINDING_TITLEBAR=16, // mouse only; trigger on container titlebar
|
||||||
BINDING_CODE=32, // keyboard only; convert keysyms into keycodes
|
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
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue