jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=298d095bc70848167022433ca1f26098d5f3171f

commit 298d095bc70848167022433ca1f26098d5f3171f
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Thu Jan 24 13:27:24 2019 +0900

    examples: fix edc build error
    
    The state changes which set non-exist state are removed.
    Missing states are added.
    Incorrect state value is fixed.
---
 src/examples/elementary/efl_ui_list_view_example.edc |  2 +-
 src/examples/elementary/evas3d_map_example.edc       | 14 ++++++--------
 2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/src/examples/elementary/efl_ui_list_view_example.edc 
b/src/examples/elementary/efl_ui_list_view_example.edc
index 75bafe1b83..1957fbf6a3 100644
--- a/src/examples/elementary/efl_ui_list_view_example.edc
+++ b/src/examples/elementary/efl_ui_list_view_example.edc
@@ -35,7 +35,7 @@ group {
       }
       program {
          signal: "efl,state,odd"; source: "efl";
-         action: STATE_SET "odd" 1.0;
+         action: STATE_SET "odd" 0.0;
          target: "base";
       }
       program {
diff --git a/src/examples/elementary/evas3d_map_example.edc 
b/src/examples/elementary/evas3d_map_example.edc
index 06a409dc60..2d4573a788 100644
--- a/src/examples/elementary/evas3d_map_example.edc
+++ b/src/examples/elementary/evas3d_map_example.edc
@@ -166,6 +166,9 @@ group { name: "elm/scroller/base/evas3d";
             inherit: "default" 0.0;
             min: 0 0;
          }
+         description { state: "clicked" 0.0;
+            inherit: "default" 0.0;
+         }
       }
       part { name: "sb_vbar_a1"; type: RECT;
          clip_to: "sb_vbar";
@@ -224,7 +227,6 @@ group { name: "elm/scroller/base/evas3d";
       program {
          signal: "mouse,down,1*"; source: "sb_vbar_a1";
          action: STATE_SET "clicked" 0.0;
-         target: "sb_vbar_a1";
          target: "arrow1_vbar";
       }
       program {
@@ -235,13 +237,11 @@ group { name: "elm/scroller/base/evas3d";
       program {
          signal: "mouse,up,1"; source: "sb_vbar_a1";
          action: STATE_SET "default" 0.0;
-         target: "sb_vbar_a1";
          target: "arrow1_vbar";
       }
       program {
          signal: "mouse,down,1*"; source: "sb_vbar_a2";
          action: STATE_SET "clicked" 0.0;
-         target: "sb_vbar_a2";
          target: "arrow2_vbar";
       }
       program {
@@ -252,7 +252,6 @@ group { name: "elm/scroller/base/evas3d";
       program {
          signal: "mouse,up,1"; source: "sb_vbar_a2";
          action: STATE_SET "default" 0.0;
-         target: "sb_vbar_a2";
          target: "arrow2_vbar";
       }
       program {
@@ -344,6 +343,9 @@ group { name: "elm/scroller/base/evas3d";
             inherit: "default" 0.0;
             min: 0 0;
          }
+         description { state: "clicked" 0.0;
+            inherit: "default" 0.0;
+         }
       }
       part { name: "sb_hbar_a1"; type: RECT;
          clip_to: "sb_hbar";
@@ -402,7 +404,6 @@ group { name: "elm/scroller/base/evas3d";
       program {
          signal: "mouse,down,1*"; source: "sb_hbar_a1";
          action: STATE_SET "clicked" 0.0;
-         target: "sb_hbar_a1";
          target: "arrow1_hbar";
       }
       program {
@@ -413,13 +414,11 @@ group { name: "elm/scroller/base/evas3d";
       program {
          signal: "mouse,up,1"; source: "sb_hbar_a1";
          action: STATE_SET "default" 0.0;
-         target: "sb_hbar_a1";
          target: "arrow1_hbar";
       }
       program {
          signal: "mouse,down,1*"; source: "sb_hbar_a2";
          action: STATE_SET "clicked" 0.0;
-         target: "sb_hbar_a2";
          target: "arrow2_hbar";
       }
       program {
@@ -430,7 +429,6 @@ group { name: "elm/scroller/base/evas3d";
       program {
          signal: "mouse,up,1"; source: "sb_hbar_a2";
          action: STATE_SET "default" 0.0;
-         target: "sb_hbar_a2";
          target: "arrow2_hbar";
       }
       program {

-- 


Reply via email to