Mercurial > aewl
changeset 553:5094facab5c7
changing snap priority
author | arg@mig29 |
---|---|
date | Mon, 30 Oct 2006 12:07:00 +0100 (2006-10-30) |
parents | 98a0d10e9918 |
children | 1734939bceba |
files | event.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/event.c Mon Oct 30 12:04:08 2006 +0100 +++ b/event.c Mon Oct 30 12:07:00 2006 +0100 @@ -50,11 +50,11 @@ 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;