fixed issue reported by rundstutzen (one has to be more hard to those broken apps)

This commit is contained in:
Anselm R. Garbe 2006-04-27 21:32:45 +02:00
parent a56081487c
commit 947a15ac98
1 changed files with 8 additions and 7 deletions

View File

@ -477,9 +477,10 @@ void
resize_client(Client *c, XRectangle *r, Bool ignore_xcall)
{
Frame *f = c->frame.data[c->sel];
int fidx = idx_of_frame(f);
f->rect = *r;
if((f->area->mode != Colstack) || (f->area->sel == idx_of_frame(f)))
if((f->area->mode != Colstack) || (f->area->sel == fidx))
match_sizehints(c);
if(!ignore_xcall) {
@ -495,15 +496,15 @@ resize_client(Client *c, XRectangle *r, Bool ignore_xcall)
f->rect.y, f->rect.width, f->rect.height);
}
if((f->area->mode != Colstack) || (f->area->sel == idx_of_frame(f))) {
c->rect.x = def.border;
c->rect.y = height_of_bar();
c->rect.x = def.border;
c->rect.y = height_of_bar();
if((f->area->sel == fidx) || (f->area->mode != Colstack)) {
c->rect.width = f->rect.width - 2 * def.border;
c->rect.height = f->rect.height - def.border - height_of_bar();
XMoveResizeWindow(dpy, c->win, c->rect.x, c->rect.y,
c->rect.width, c->rect.height);
configure_client(c);
}
XMoveResizeWindow(dpy, c->win, c->rect.x, c->rect.y,
c->rect.width, c->rect.height);
configure_client(c);
}
void