diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-06-13 05:53:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-13 05:53:02 -0700 |
commit | 55fe5fc580c31a5e0ce67a8d515061f94f1f92d0 (patch) | |
tree | 855a5886f90dd555ae1057049d8d802d0c2b5cfb /include/sway/config.h | |
parent | 867fb6aedbbe4cd1c7f4817848682609e8489880 (diff) | |
parent | ca061ba8bf94e1d09e1d912871841212778044ed (diff) |
Merge pull request #2130 from frsfnrrg/keyboard-tuning
Clean up keyboard handling code
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index 81e9c382..e75b0664 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -30,7 +30,7 @@ struct sway_binding { bool release; bool locked; bool bindcode; - list_t *keys; + list_t *keys; // sorted in ascending order uint32_t modifiers; char *command; }; |