added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne - dwm - dynamic window manager
HTML git clone https://git.parazyd.org/dwm
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 90f3238301c85ffad459cb871d70ebea569ecbb3
DIR parent 3bfc43c3d01d710c4828d75a8a5a9b910ee90dff
HTML Author: anselm@garbe.us <unknown>
Date: Sun, 15 Apr 2012 11:41:18 +0200
added kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne
Diffstat:
M dwm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
DIR diff --git 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);
}