mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
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:
parent
8a9475a0dd
commit
eeffbe11ab
5
st.c
5
st.c
@ -2986,6 +2986,11 @@ xseturgency(int add) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
focus(XEvent *ev) {
|
focus(XEvent *ev) {
|
||||||
|
XFocusChangeEvent *e = &ev->xfocus;
|
||||||
|
|
||||||
|
if(e->mode == NotifyGrab)
|
||||||
|
return;
|
||||||
|
|
||||||
if(ev->type == FocusIn) {
|
if(ev->type == FocusIn) {
|
||||||
XSetICFocus(xw.xic);
|
XSetICFocus(xw.xic);
|
||||||
xw.state |= WIN_FOCUSED;
|
xw.state |= WIN_FOCUSED;
|
||||||
|
Loading…
Reference in New Issue
Block a user