diff --git a/legacy/elementary/ChangeLog b/legacy/elementary/ChangeLog index d48dca38c6..8df772677c 100644 --- a/legacy/elementary/ChangeLog +++ b/legacy/elementary/ChangeLog @@ -725,4 +725,8 @@ 2012-11-29 Thiep Ha - * Entry: add a mode to clear selection when entry loose focus. + * Entry: add a mode to clear selection when entry loose focus. + +2012-11-30 ChunEon Park (Hermet) + + * Fix the naviframe to resize it's items which are inserted. diff --git a/legacy/elementary/NEWS b/legacy/elementary/NEWS index 1bd34c8441..1ba745a4ea 100644 --- a/legacy/elementary/NEWS +++ b/legacy/elementary/NEWS @@ -66,7 +66,8 @@ Fixes: * Fix the naviframe to clear the title contents when it's item is deleted. * Fix entry to enable have_selection only when a text is actually selected. * Fix the naviframe to clear the text parts when it's item is deleted. - * Fix the mapbuf to update it's content correcltly evenif they go outside of the buffer. + * Fix the mapbuf to update it's content correcltly evenif they go outside of the buffer. + * Fix the naviframe to resize it's items which are inserted. Removals: diff --git a/legacy/elementary/src/lib/elc_naviframe.c b/legacy/elementary/src/lib/elc_naviframe.c index 2b70147398..e10602f33a 100644 --- a/legacy/elementary/src/lib/elc_naviframe.c +++ b/legacy/elementary/src/lib/elc_naviframe.c @@ -1454,6 +1454,7 @@ _item_insert_before(Eo *obj, void *_pd, va_list *list) it = _item_new(obj, prev_it, title_label, prev_btn, next_btn, content, item_style); if (!it) return; + elm_widget_resize_object_set(obj, VIEW(it)); sd->stack = eina_inlist_prepend_relative (sd->stack, EINA_INLIST_GET(it), @@ -1500,6 +1501,7 @@ _item_insert_after(Eo *obj, void *_pd, va_list *list) it = _item_new(obj, (Elm_Naviframe_Item *)after, title_label, prev_btn, next_btn, content, item_style); if (!it) return; + elm_widget_resize_object_set(obj, VIEW(it)); if (elm_naviframe_top_item_get(obj) == after) top_inserted = EINA_TRUE;