Browse Source

simplified configurerequest to a bare minimum, removed wrong ban() calls

master
Anselm R. Garbe 18 years ago
parent
commit
39ed54a468
2 changed files with 1 additions and 16 deletions
  1. +0
    -8
      client.c
  2. +1
    -8
      event.c

+ 0
- 8
client.c View File

@ -67,14 +67,6 @@ xerrordummy(Display *dsply, XErrorEvent *ee) {
/* extern */
void
ban(Client *c) {
if(!c || c->isbanned)
return;
c->isbanned = True;
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
}
void
configure(Client *c) {
XConfigureEvent ce;


+ 1
- 8
event.c View File

@ -184,16 +184,9 @@ configurerequest(XEvent *e) {
c->h = ev->height;
if((ev->value_mask & (CWX | CWY))
&& !(ev->value_mask & (CWWidth | CWHeight)))
{
configure(c);
if(isvisible(c))
XMoveWindow(dpy, c->win, c->x, c->y);
}
else {
if(isvisible(c))
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
if(!isvisible(c))
ban(c);
}
}
else
configure(c);


Loading…
Cancel
Save