jaehyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2ad7a110d3ca7efd26467746afa32603c665e614
commit 2ad7a110d3ca7efd26467746afa32603c665e614 Author: Jaehyun Cho <jae_hyun....@samsung.com> Date: Wed Oct 5 14:12:44 2016 +0900 naviframe: Remove redundant programs. The redundant programs emit duplicate signals incorrectly. --- data/elementary/themes/edc/elm/naviframe.edc | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/data/elementary/themes/edc/elm/naviframe.edc b/data/elementary/themes/edc/elm/naviframe.edc index 729aa37..950ab1e 100644 --- a/data/elementary/themes/edc/elm/naviframe.edc +++ b/data/elementary/themes/edc/elm/naviframe.edc @@ -649,30 +649,5 @@ group { name: "elm/naviframe/item/overlap/default"; } } } - programs { - /* current page is being pushed: [previous]<----[current] */ - program { - signal: "elm,state,cur,pushed"; source: "elm"; - action: SIGNAL_EMIT "elm,action,pushed,finished" "elm"; - } - - /* current page is being popped: [current]---->[next] */ - program { - signal: "elm,state,cur,popped"; source: "elm"; - action: SIGNAL_EMIT "elm,action,popped,finished" "elm"; - } - - /* new page is being pushed: [current]<----[next] */ - program { - signal: "elm,state,new,pushed"; source: "elm"; - action: SIGNAL_EMIT "elm,action,show,finished" "elm"; - } - - /* previous page is being pushed: [previous]---->[current] */ - program { - signal: "elm,state,prev,popped"; source: "elm"; - action: SIGNAL_EMIT "elm,action,show,finished" "elm"; - } - } } #undef BOTTOMMAX --