client.c
changeset 311 099c595c53e6
parent 310 f0b609fca3de
child 313 8b109976c594
equal deleted inserted replaced
310:f0b609fca3de 311:099c595c53e6
   256 		c->isfloat = trans
   256 		c->isfloat = trans
   257 			|| (c->maxw && c->minw &&
   257 			|| (c->maxw && c->minw &&
   258 				c->maxw == c->minw && c->maxh == c->minh);
   258 				c->maxw == c->minw && c->maxh == c->minh);
   259 	settitle(c);
   259 	settitle(c);
   260 
   260 
   261 	if(trans && (tc = getclient(trans))) {
   261 	if(!trans) {
   262 		c->x = (tc->x + tc->w / 2) - (c->w / 2);
       
   263 		c->y = (tc->y + tc->h / 2) - (c->h / 2);
       
   264 		if((c->x + c->w < 0) || (c->x >= sw))
       
   265 			c->x = (sw / 2) - (c->w / 2);
       
   266 		if((c->y + c->h < 0) || (c->y >= sh))
       
   267 			c->y = ((sh - bh) / 2) - (c->h / 2) + bh;
       
   268 	}
       
   269 	else {
       
   270 		c->x = (sw / 2) - (c->w / 2);
   262 		c->x = (sw / 2) - (c->w / 2);
   271 		c->y = ((sh - bh) / 2) - (c->h / 2) + bh;
   263 		c->y = ((sh - bh) / 2) - (c->h / 2) + bh;
   272 	}
   264 	}
   273 
   265 
   274 	if(isvisible(c))
   266 	if(isvisible(c))