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.
This commit is contained in:
Carsten Haitzler 2016-08-18 14:19:25 +09:00
parent 6f9f361f3e
commit 4be972c41c
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{