raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4be972c41ce956b08bd367a02dfc638766fc380f
commit 4be972c41ce956b08bd367a02dfc638766fc380f Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Aug 18 14:19:25 2016 +0900 ejde - fix recalc single min n edje for h eval this fixes a seemingly small typo that would only turn up with fixed point, but not floats as we have by default whwere we had x = 999; instead of x = FROM_INT(999); shouldn't be visibule unless you disable float support and use fixed point in edje. --- src/lib/edje/edje_calc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/edje/edje_calc.c b/src/lib/edje/edje_calc.c index bb717c2..c5e07c1 100644 --- a/src/lib/edje/edje_calc.c +++ b/src/lib/edje/edje_calc.c @@ -1949,7 +1949,7 @@ _edje_part_recalc_single_min(Edje_Part_Description_Common *desc, FLOAT_T h; w = params->eval.w ? params->eval.w : FROM_INT(99999); - h = params->eval.h ? params->eval.h : 99999; + h = params->eval.h ? params->eval.h : FROM_INT(99999); switch (aspect) { --
