Wmfs: in quit(), just unhide and Reparent the window in ROOT.

This commit is contained in:
Martin Duquesnoy 2009-07-14 15:56:47 +02:00
parent d392f9b5cf
commit 73318aca9d

View File

@ -88,12 +88,8 @@ quit(void)
/* Unmanage all clients */
for(c = clients; c; c = c->next)
{
if(c->hide)
client_unhide(c);
if(c->unmapped)
client_map(c);
client_unmanage(c);
client_unhide(c);
XReparentWindow(dpy, c->win, ROOT, c->geo.x, c->geo.y);
}
IFREE(tags);