Skip to content

Commit

Permalink
Fix a mouse binding for non english keymap
Browse files Browse the repository at this point in the history
Add masks (1 << 13) and (1 << 14)
  • Loading branch information
rdnvndr committed Aug 17, 2017
1 parent 359eb7b commit 3572cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/binding.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void StartupBindings(void)
}
JXFreeModifiermap(modmap);
lockMask |= Button1Mask | Button2Mask | Button3Mask
| Button4Mask | Button5Mask;
| Button4Mask | Button5Mask | (1<<13) | (1<<14);

/* Look up and grab the keys. */
for(np = bindings[MC_NONE]; np; np = np->next) {
Expand Down

0 comments on commit 3572cb8

Please sign in to comment.