summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2016-08-18 14:19:25 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2016-08-18 14:21:08 +0900
commit4be972c41ce956b08bd367a02dfc638766fc380f (patch)
tree4d980a00b6768217c3c67a6c3ad6dcad7c596e67
parent6f9f361f3eae85b03d29af734d72bdb87df8ed88 (diff)
downloadefl-4be972c41ce956b08bd367a02dfc638766fc380f.tar.gz
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.
-rw-r--r--src/lib/edje/edje_calc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/edje/edje_calc.c b/src/lib/edje/edje_calc.c
index bb717c2c5d..c5e07c1a7f 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)
{