From: tasn Date: Tue, 24 Jan 2012 12:49:42 +0000 (+0000) Subject: Elm entry: Fix a bug in elm_entry_calc_force. X-Git-Tag: REL_F_I9500_20120323_1~17^2~840 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36fb27bca79faea568412496321d77008ab92e41;p=framework%2Fuifw%2Felementary.git Elm entry: Fix a bug in elm_entry_calc_force. It should force calling of sizing eval as well... git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67488 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 0665900..9091a52 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -2583,6 +2583,8 @@ elm_entry_calc_force(const Evas_Object *obj) if (!wd) return; edje_object_calc_force(wd->ent); + wd->changed = EINA_TRUE; + _sizing_eval(obj); }