about summary refs log tree commit diff
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
parentapplied Andreas Amanns' netwm_client_list patch, but with some indentation fixes (diff)
downloaddwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar.gz
dwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar.bz2
dwm-90f3238301c85ffad459cb871d70ebea569ecbb3.zip
added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne
-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);
 }