diff options
author | anselm@garbe.us <unknown> | 2012-04-15 11:41:18 +0200 |
---|---|---|
committer | anselm@garbe.us <unknown> | 2012-04-15 11:41:18 +0200 |
commit | 90f3238301c85ffad459cb871d70ebea569ecbb3 (patch) | |
tree | 7327308761eb1946f8726791d5d7ccffd782b5f5 /dwm.c | |
parent | 3bfc43c3d01d710c4828d75a8a5a9b910ee90dff (diff) | |
download | dwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar dwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar.gz dwm-90f3238301c85ffad459cb871d70ebea569ecbb3.tar.bz2 |
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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); } |