diff options
author | Christoph Lohmann <20h@r-36.net> | 2013-02-11 22:20:16 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2013-02-11 22:20:16 +0100 |
commit | eeffbe11ab8b3ea94eefcf178003e36d389f8776 (patch) | |
tree | 8babf713affa0a59b5970181611deea7689a41a7 | |
parent | 8a9475a0dd9b8751b9b0ed4c7da4db09232e318e (diff) |
Making st not activate the cursor in case of Mod + k in dwm.
Thanks Jens Nyberg <jens.nyberg@gmail.com>!
-rw-r--r-- | st.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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; |