ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=55fb77308b33c7c66c389ab60f4fdb16957a381a

commit 55fb77308b33c7c66c389ab60f4fdb16957a381a
Author: Andy Williams <a...@andywilliams.me>
Date:   Fri Feb 21 08:05:31 2014 +0000

    naviframe: fix T1008 so promoting an overlap item would perform as 
documented
---
 data/themes/edc/elm/naviframe.edc | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/data/themes/edc/elm/naviframe.edc 
b/data/themes/edc/elm/naviframe.edc
index 943294b..025d24a 100644
--- a/data/themes/edc/elm/naviframe.edc
+++ b/data/themes/edc/elm/naviframe.edc
@@ -653,5 +653,30 @@ 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

-- 


Reply via email to