From: arg@mig29 <unknown>
Date: Mon, 30 Oct 2006 11:07:00 +0000 (+0100)
Subject: changing snap priority
X-Git-Url: https://git.xinqibao.xyz/dwm.git/commitdiff_plain/99785382ae6d4b20e8baf33542059e466e0b3c7c

changing snap priority
---

diff --git a/event.c b/event.c
index f0e88d0..007dbbc 100644
--- a/event.c
+++ b/event.c
@@ -50,11 +50,11 @@ movemouse(Client *c) {
 			c->y = ocy + (ev.xmotion.y - y1);
 			if(abs(c->x) < sx + SNAP)
 				c->x = sx;
+			else if(c->x + c->w > sx + sw - SNAP)
+				c->x = sw - c->w - 2 * BORDERPX;
 			if(abs(c->y) < sy + bh + SNAP)
 				c->y = sy + bh;
-			if(c->x + c->w > sx + sw - SNAP)
-				c->x = sw - c->w - 2 * BORDERPX;
-			if(c->y + c->h > sy + sh - SNAP)
+			else if(c->y + c->h > sy + sh - SNAP)
 				c->y = sh - c->h - 2 * BORDERPX;
 			resize(c, False, TopLeft);
 			break;