From: Carsten Haitzler (Rasterman) Date: Wed, 20 Mar 2013 03:45:18 +0000 (+0900) Subject: oh so minor buglet - interpolate border scale by a sa float (in fixed X-Git-Tag: submit/devel/efl/20131022.203902~1542 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b71a17b9db690149524a166027c432050de07586;p=platform%2Fupstream%2Fefl.git oh so minor buglet - interpolate border scale by a sa float (in fixed point) not an integer! --- diff --git a/src/lib/edje/edje_calc.c b/src/lib/edje/edje_calc.c index 05ca8f8..46fde4c 100644 --- a/src/lib/edje/edje_calc.c +++ b/src/lib/edje/edje_calc.c @@ -3203,7 +3203,7 @@ _edje_part_recalc(Edje *ed, Edje_Real_Part *ep, int flags, Edje_Calc_Params *sta p3->type.common.spec.image.r = INTP(p1->type.common.spec.image.r, p2->type.common.spec.image.r, pos); p3->type.common.spec.image.t = INTP(p1->type.common.spec.image.t, p2->type.common.spec.image.t, pos); p3->type.common.spec.image.b = INTP(p1->type.common.spec.image.b, p2->type.common.spec.image.b, pos); - p3->type.common.spec.image.border_scale_by = INTP(p1->type.common.spec.image.border_scale_by, p2->type.common.spec.image.border_scale_by, pos); + p3->type.common.spec.image.border_scale_by = FFP(p1->type.common.spec.image.border_scale_by, p2->type.common.spec.image.border_scale_by, pos); case EDJE_PART_TYPE_PROXY: p3->type.common.fill.x = INTP(p1->type.common.fill.x, p2->type.common.fill.x, pos); p3->type.common.fill.y = INTP(p1->type.common.fill.y, p2->type.common.fill.y, pos);