From 7dd2bcaec9786bf9b35a939ab297ddae12af101f Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Wed, 15 Feb 2012 19:24:52 +0100 Subject: [PATCH] Fix hole in layout when removing fullscreen state --- src/ewmh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ewmh.c b/src/ewmh.c index b483a45..d1664de 100644 --- a/src/ewmh.c +++ b/src/ewmh.c @@ -220,7 +220,7 @@ ewmh_manage_state(long data[], struct client *c) (unsigned char*)0, 0); XReparentWindow(W->dpy, c->win, c->frame, c->wgeo.x, c->wgeo.y); - layout_client(c); + layout_fix_hole(c); } } }