ecore: animator can get called with the same value due to rounding and range limit.

This commit is contained in:
Cedric Bail 2013-05-20 18:59:43 +09:00
parent be153f92b6
commit d66517debf
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ static double prev = 0;
static Eina_Bool _anim_cb(void *data, double pos)
{
fail_if(prev >= pos);
fail_if(prev > pos);
prev = pos;
if (pos == 1.0)