naviframe: Fix to show/hide item view.

Naviframe item view did not become visible if top item view is deleted
by elm_object_item_del().
To resolve this problem, program for "elm,state,visible" is fixed and
"elm,state,invisible" is added.
This commit is contained in:
Jaehyun Cho 2016-10-05 17:30:42 +09:00
parent 2ad7a110d3
commit 93dfe1251b
1 changed files with 7 additions and 2 deletions

View File

@ -544,10 +544,15 @@ group { name: "elm/naviframe/item/basic/default";
program {
signal: "elm,state,visible"; source: "elm";
action: STATE_SET "default" 0.0;
target: "elm.swallow.content";
target: "elements_clip";
target: "base";
}
program {
signal: "elm,state,invisible"; source: "elm";
action: STATE_SET "hidden" 0.0;
target: "elements_clip";
}
/* current page is being pushed: [previous]<----[current] */
program {
signal: "elm,state,cur,pushed"; source: "elm";