From ffd0e541f4ac0cbeb42f715d349e7479c8cf483a Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Sun, 19 Oct 2008 14:26:17 +0200 Subject: [PATCH] layout: Fix client size --- src/layout.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layout.c b/src/layout.c index fdfe513..d7de8db 100644 --- a/src/layout.c +++ b/src/layout.c @@ -131,7 +131,7 @@ maxlayout(void) geo.x = sgeo.x; geo.y = sgeo.y; geo.width = sgeo.width - (conf.borderheight * 2); - geo.height = sgeo.height - (conf.borderheight * 2) - conf.ttbarheight; + geo.height = sgeo.height - (conf.borderheight * 2); client_moveresize(c, geo, False); } @@ -255,7 +255,7 @@ tile(void) cgeo.height = tileheight - border; } - cgeo.height -= conf.ttbarheight; + //cgeo.height -= conf.ttbarheight; client_moveresize(c, cgeo, tags[seltag].resizehint); @@ -298,7 +298,7 @@ uicb_togglemax(uicb_t cmd) geo.x = sgeo.x; geo.y = sgeo.y; geo.width = sgeo.width - (conf.borderheight * 2); - geo.height = sgeo.height - (conf.borderheight * 2) - conf.ttbarheight; + geo.height = sgeo.height - (conf.borderheight * 2); client_moveresize(sel, geo, False); raiseclient(sel);