Elm entry: Fix a bug in elm_entry_calc_force.
authortasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 24 Jan 2012 12:49:42 +0000 (12:49 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 24 Jan 2012 12:49:42 +0000 (12:49 +0000)
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

src/lib/elm_entry.c

index 0665900..9091a52 100644 (file)
@@ -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);
 }