elc_naviframe: Hide preserved content after its item is popped.

Previously, preserved content was shown unexpectedly after its naviframe
item was popped because the preserved content was not removed but was
unset from its naviframe item.

Since popped naviframe item becomes hidden on the screen, the preserved
content of the popped naviframe item should become hidden by default as
well.
This commit is contained in:
Jaehyun Cho 2016-05-30 13:53:40 +09:00
parent 3092e08a83
commit 075ccc5022
1 changed files with 1 additions and 0 deletions

View File

@ -198,6 +198,7 @@ _item_free(Elm_Naviframe_Item_Data *it)
elm_object_part_content_unset(VIEW(it), CONTENT_PART);
evas_object_event_callback_del
(it->content, EVAS_CALLBACK_DEL, _item_content_del_cb);
evas_object_hide(it->content);
}
}
}