X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=plugins%2Fresistance.c;h=30741d80b83fea40f5e2ef004b0dba320e783ae9;hb=8a6a9710eb9f7a22d5e0cb01b18f1d3aad78e908;hp=a92047af0da1dbbafe1f77fef31ec56522a690b0;hpb=21442ab6e429ac648ffe1a3efba7dfb200e7fddd;p=chaz%2Fopenbox diff --git a/plugins/resistance.c b/plugins/resistance.c index a92047af..30741d80 100644 --- a/plugins/resistance.c +++ b/plugins/resistance.c @@ -244,15 +244,16 @@ 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 = ar - lt + 1; + *h = ab - lt + 1; break; case Corner_BottomLeft: case Corner_BottomRight: dlt = lt - *h + c->frame->area.height; drb = rb; if (lt >= at && dlt < at && dlt >= at - resist.integer) - *h = rb - al + 1; + *h = rb - at + 1; break; }