summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dwm.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index a6968ff..8e004cb 100644
--- a/dwm.c
+++ b/dwm.c
@@ -513,12 +513,15 @@ unswallow(Client *c)
free(c->swallowing);
c->swallowing = NULL;
+ /* unfullscreen the client */
+ setfullscreen(c, 0);
updatetitle(c);
arrange(c->mon);
XMapWindow(dpy, c->win);
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
- configure(c);
setclientstate(c, NormalState);
+ focus(NULL);
+ arrange(c->mon);
}
void