From a8afa4d073037565d6d07b08e1ee4883fd9ec59d Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 31 Mar 2003 05:38:19 +0000 Subject: [PATCH] extraneous ! causing resistance to be snapping in one case. rm a debug print --- plugins/resistance.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/resistance.c b/plugins/resistance.c index 30741d80..56ad9d91 100644 --- a/plugins/resistance.c +++ b/plugins/resistance.c @@ -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; -- 2.39.2