elementar/naviframe - fixed to calc the pushed items also.

SVN revision: 61315
This commit is contained in:
ChunEon Park 2011-07-13 04:42:45 +00:00
parent cb43f37906
commit f93e955de4
1 changed files with 3 additions and 1 deletions

View File

@ -125,13 +125,15 @@ _sizing_eval(Evas_Object *obj)
{
Widget_Data *wd;
Eina_List *list;
Elm_Naviframe_Item *it;
wd = elm_widget_data_get(obj);
if (!wd) return;
list = eina_list_last(wd->stack);
if (!list) return;
_item_sizing_eval(list->data);
EINA_LIST_FOREACH(wd->stack, list, it)
_item_sizing_eval(it);
}
static void