commit 02e707a4ee3d389597b5eb4e4b5bf78dbe4a7b8e
parent 5a74d5ad633f810b3a383d1d63092a5a6be33e1b
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Wed, 18 Jan 2006 17:46:21 +0200
fixed autowarping on focus_layout (was annoying depending in which scenario called, ie on focus_page)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/wm/layout.c b/cmd/wm/layout.c
@@ -61,7 +61,7 @@ focus_layout(Layout *l)
p->sel = l;
p->file[P_SEL_LAYOUT]->content = l->file[L_PREFIX]->content;
if((c = l->def->sel(l)))
- l->def->focus(l, c, True);
+ l->def->focus(l, c, False);
invoke_wm_event(def[WM_EVENT_PAGE_UPDATE]);
}