From 1381989651762e657ead894a7b31b68b654afea6 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Sun, 6 Jan 2008 23:37:53 +0100 Subject: [PATCH] restack on max --- client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.c b/client.c index f6b947d4..a663b139 100644 --- a/client.c +++ b/client.c @@ -888,11 +888,13 @@ client_maximize(Client *c, Area geometry) /* set floating after resizing so it won't save * coords */ c->isfloating = True; + restack(c->screen); } else if(c->wasfloating) { c->isfloating = True; client_resize(c, c->m_geometry, False); + restack(c->screen); } else { -- 2.11.4.GIT