projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bfc43c
)
added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti...
author
anselm@garbe.us
<unknown>
Sun, 15 Apr 2012 09:41:18 +0000
(11:41 +0200)
committer
anselm@garbe.us
<unknown>
Sun, 15 Apr 2012 09:41:18 +0000
(11:41 +0200)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index 9702063616fbdaf0bcf86ab1f076cfe1a8157e8e..90505b10aa2a434128059e419068f4eb87538880 100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-884,7
+884,8
@@
focusmon(const Arg *arg) {
return;
if((m = dirtomon(arg->i)) == selmon)
return;
- unfocus(selmon->sel, True);
+ unfocus(selmon->sel, False); /* s/True/False/ fixes input focus issues
+ in gedit and anjuta */
selmon = m;
focus(NULL);
}