commit c53d95d0903f019c89b2c92d0f37bd1112757509
parent b5442734cfc90df8f962cb30be797eb64c3fc79d
Author: Kris Maglione <kris@suckless.org>
Date: Fri, 23 Oct 2009 08:55:28 -0400
Fix clients overlapping titlebar of collapsed frames after font change. Closes issue #128.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/cmd/wmii/client.c b/cmd/wmii/client.c
@@ -530,6 +530,7 @@ client_resize(Client *c, Rectangle r) {
unmap_frame(c);
else {
reshapewin(c->framewin, f->r);
+ reshapewin(&c->w, f->crect);
map_frame(c);
}
client_unmap(c, IconicState);