aboutsummaryrefslogtreecommitdiff
path: root/event.c
diff options
context:
space:
mode:
Diffstat (limited to 'event.c')
-rw-r--r--event.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/event.c b/event.c
index 153b49a..db3ce46 100644
--- a/event.c
+++ b/event.c
@@ -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);