tadded kludge to fix some input focus misbehavior in gedit and anjuta, thanks Martti Kühne - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 90f3238301c85ffad459cb871d70ebea569ecbb3
(DIR) parent 3bfc43c3d01d710c4828d75a8a5a9b910ee90dff
(HTM) 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
t@@ -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);
}