From 90f3238301c85ffad459cb871d70ebea569ecbb3 Mon Sep 17 00:00:00 2001 From: "anselm@garbe.us" Date: Sun, 15 Apr 2012 11:41:18 +0200 Subject: [PATCH] =?UTF-8?q?added=20kludge=20to=20fix=20some=20input=20focu?= =?UTF-8?q?s=20misbehavior=20in=20gedit=20and=20anjuta,=20thanks=20Martti?= =?UTF-8?q?=20K=C3=BChne?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dwm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }