about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authoranselm@garbe.us <unknown>2012-04-15 11:41:18 +0200
committeranselm@garbe.us <unknown>2012-04-15 11:41:18 +0200
commit90f3238301c85ffad459cb871d70ebea569ecbb3 (patch)
tree7327308761eb1946f8726791d5d7ccffd782b5f5 /dwm.c
parent3bfc43c3d01d710c4828d75a8a5a9b910ee90dff (diff)
downloaddwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar.gz
added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 9702063..90505b1 100644
--- 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);
 }