added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne

This commit is contained in:
anselm@garbe.us 2012-04-15 11:41:18 +02:00
parent 3bfc43c3d0
commit 90f3238301
1 changed files with 2 additions and 1 deletions

3
dwm.c
View File

@ -884,7 +884,8 @@ focusmon(const Arg *arg) {
return; return;
if((m = dirtomon(arg->i)) == selmon) if((m = dirtomon(arg->i)) == selmon)
return; return;
unfocus(selmon->sel, True); unfocus(selmon->sel, False); /* s/True/False/ fixes input focus issues
in gedit and anjuta */
selmon = m; selmon = m;
focus(NULL); focus(NULL);
} }