syntax error!
This commit is contained in:
parent
921a711dad
commit
00d8c8d379
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue