client.c
changeset 533 a5567a0d3011
parent 532 651f2c868b31
child 543 722cffee3770
equal deleted inserted replaced
532:651f2c868b31 533:a5567a0d3011
   244 	ban(c);
   244 	ban(c);
   245 	XMapWindow(dpy, c->win);
   245 	XMapWindow(dpy, c->win);
   246 	XMapWindow(dpy, c->twin);
   246 	XMapWindow(dpy, c->twin);
   247 	if(isvisible(c))
   247 	if(isvisible(c))
   248 		focus(c);
   248 		focus(c);
   249 	arrange(NULL);
   249 	arrange();
   250 }
   250 }
   251 
   251 
   252 void
   252 void
   253 resize(Client *c, Bool sizehints, Corner sticky) {
   253 resize(Client *c, Bool sizehints, Corner sticky) {
   254 	int bottom = c->y + c->h;
   254 	int bottom = c->y + c->h;
   391 	free(c->tags);
   391 	free(c->tags);
   392 	free(c);
   392 	free(c);
   393 	XSync(dpy, False);
   393 	XSync(dpy, False);
   394 	XSetErrorHandler(xerror);
   394 	XSetErrorHandler(xerror);
   395 	XUngrabServer(dpy);
   395 	XUngrabServer(dpy);
   396 	arrange(NULL);
   396 	arrange();
   397 }
   397 }