about summary refs log tree commit diff stats
path: root/dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'dev.c')
-rw-r--r--dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev.c b/dev.c
index c77ef58..5e338b3 100644
--- a/dev.c
+++ b/dev.c
@@ -104,7 +104,7 @@ mresize(Client *c)
 			c->h = abs(ocy - ev.xmotion.y);
 			c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
 			c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
-			resize(c);
+			resize(c, True);
 			break;
 		case ButtonRelease:
 			XUngrabPointer(dpy, CurrentTime);
@@ -138,7 +138,7 @@ mmove(Client *c)
 			XFlush(dpy);
 			c->x = ocx + (ev.xmotion.x - x1);
 			c->y = ocy + (ev.xmotion.y - y1);
-			resize(c);
+			resize(c, False);
 			break;
 		case ButtonRelease:
 			XUngrabPointer(dpy, CurrentTime);