Making st not activate the cursor in case of Mod + k in dwm.

Thanks Jens Nyberg <jens.nyberg@gmail.com>!
This commit is contained in:
Christoph Lohmann 2013-02-11 22:20:16 +01:00
parent 8a9475a0dd
commit eeffbe11ab
1 changed files with 5 additions and 0 deletions

5
st.c
View File

@ -2986,6 +2986,11 @@ xseturgency(int add) {
void
focus(XEvent *ev) {
XFocusChangeEvent *e = &ev->xfocus;
if(e->mode == NotifyGrab)
return;
if(ev->type == FocusIn) {
XSetICFocus(xw.xic);
xw.state |= WIN_FOCUSED;