aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author[email protected] <unknown>2012-04-15 11:41:18 +0200
committer[email protected] <unknown>2012-04-15 11:41:18 +0200
commit90f3238301c85ffad459cb871d70ebea569ecbb3 (patch)
tree7327308761eb1946f8726791d5d7ccffd782b5f5
parentapplied Andreas Amanns' netwm_client_list patch, but with some indentation fixes (diff)
downloadseiwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar.xz
seiwm-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);
}