X10/SGR mouse: use alt as meta key instead of super/windows key

Ref.
   - https://git.suckless.org/st/commit/2c5edf28ec851907305d73c6218ce75d39f1767f.html
This commit is contained in:
bakkeby 2022-02-24 13:39:56 +01:00
parent 9a86625780
commit cc4595779d
1 changed files with 1 additions and 1 deletions

2
x.c
View File

@ -447,7 +447,7 @@ mousereport(XEvent *e)
if (!IS_SET(MODE_MOUSEX10)) {
code += ((state & ShiftMask ) ? 4 : 0)
+ ((state & Mod4Mask ) ? 8 : 0)
+ ((state & Mod1Mask ) ? 8 : 0) /* meta key: alt */
+ ((state & ControlMask) ? 16 : 0);
}