extraneous ! causing resistance to be snapping in one case. rm a debug print

This commit is contained in:
Dana Jansens 2003-03-31 05:38:19 +00:00
parent feb6bc632f
commit a8afa4d073

View file

@ -93,7 +93,7 @@ static void resist_move(Client *c, int *x, int *y)
if (snapy == NULL) {
if (ct >= tb && t < tb && t >= tb - resist.integer)
*y = tb, snapy = target;
else if (!cb <= tt && b > tt && b <= tt + resist.integer)
else if (cb <= tt && b > tt && b <= tt + resist.integer)
*y = tt - h + 1, snapy = target;
if (snapy != NULL) {
/* try to corner snap to the window */
@ -244,7 +244,6 @@ static void resist_size(Client *c, int *w, int *h, Corner corn)
case Corner_TopRight:
dlt = lt;
drb = rb + *h - c->frame->area.height;
g_message("dlt %d drb %d rb %d ab %d", dlt, drb, rb, ab);
if (rb <= ab && drb > ab && drb <= ab + resist.integer)
*h = ab - lt + 1;
break;