syntax error!

This commit is contained in:
Dana Jansens 2003-03-21 09:38:51 +00:00
parent 921a711dad
commit 00d8c8d379

View file

@ -38,8 +38,8 @@ static void resist(Client *c, int *x, int *y)
int tl, tt, tr, tb; /* 1 past the target's edges on each side */
target = it->data;
if (target == c) continue; /* don't snap to self */
if (!target->visible) continue; /* don't snap to non-visibles */
/* don't snap to self or non-visibles */
if (target == c || !target->frame->visible) continue;
tl = target->frame->area.x - 1;
tt = target->frame->area.y - 1;