Mark as changed when smooth scale flag changes.

This allows us to change to non-smooth on animations and then back to
smooth after animation is done.



SVN revision: 39300
This commit is contained in:
Gustavo Sverzut Barbieri 2009-02-28 20:09:03 +00:00
parent 071ad5b4aa
commit 87d5d0a037
1 changed files with 2 additions and 0 deletions

View File

@ -1269,6 +1269,8 @@ evas_object_image_smooth_scale_set(Evas_Object *obj, Evas_Bool smooth_scale)
((!smooth_scale) && (!o->cur.smooth_scale)))
return;
o->cur.smooth_scale = smooth_scale;
o->changed = 1;
evas_object_change(obj);
}
/**