diff --git a/gui-x11/x11.c b/gui-x11/x11.c index a122005..2853a15 100644 --- a/gui-x11/x11.c +++ b/gui-x11/x11.c @@ -1224,7 +1224,7 @@ xkeyboard(XEvent *e) if(k == XK_hyphen) k = XK_minus; /* Do control mapping ourselves if translator doesn't */ - if(e->xkey.state&ControlMask) + if(e->xkey.state&ControlMask && k != Kalt) k &= 0x9f; if(k == NoSymbol) { return;