From 7879b1c3b9074dbfc916d6c0913b3d4b9143424c Mon Sep 17 00:00:00 2001 From: Jaehwan Kim Date: Wed, 3 Apr 2013 19:57:04 +0900 Subject: [PATCH] [Scroller] Add the shadow effect when the scroll reaches at the edge. --- themes/widgets/scroller.edc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/themes/widgets/scroller.edc b/themes/widgets/scroller.edc index df863fc..5018f06 100644 --- a/themes/widgets/scroller.edc +++ b/themes/widgets/scroller.edc @@ -1154,9 +1154,9 @@ group { name: "elm/genlist/base/default"; inherit: "default" 0.0; color: 255 255 255 255; } - description { state: "hidden" 0.0; + description { state: "edge_op" 0.0; inherit: "default" 0.0; - visible: 0; + color: 255 255 255 65; } } part { name: "shadow_bottom"; @@ -1179,9 +1179,9 @@ group { name: "elm/genlist/base/default"; inherit: "default" 0.0; color: 255 255 255 255; } - description { state: "hidden" 0.0; + description { state: "edge_op" 0.0; inherit: "default" 0.0; - visible: 0; + color: 255 255 255 65; } } part { name: "shadow_left"; @@ -1204,9 +1204,9 @@ group { name: "elm/genlist/base/default"; inherit: "default" 0.0; color: 255 255 255 255; } - description { state: "hidden" 0.0; + description { state: "edge_op" 0.0; inherit: "default" 0.0; - visible: 0; + color: 255 255 255 65; } } part { name: "shadow_right"; @@ -1229,9 +1229,9 @@ group { name: "elm/genlist/base/default"; inherit: "default" 0.0; color: 255 255 255 255; } - description { state: "hidden" 0.0; + description { state: "edge_op" 0.0; inherit: "default" 0.0; - visible: 0; + color: 255 255 255 65; } } part { name: "padding_jump_to_top"; @@ -1418,7 +1418,7 @@ group { name: "elm/genlist/base/default"; source: "elm"; script { set_state(PART:"shadow_top", "edge", 0.0); - set_state(PART:"shadow_bottom", "hidden", 0.0); + set_state(PART:"shadow_bottom", "edge_op", 0.0); } after: "edge_vertical"; } @@ -1426,7 +1426,7 @@ group { name: "elm/genlist/base/default"; signal: "elm,edge,bottom"; source: "elm"; script { - set_state(PART:"shadow_top", "hidden", 0.0); + set_state(PART:"shadow_top", "edge_op", 0.0); set_state(PART:"shadow_bottom", "edge", 0.0); } after: "edge_vertical"; @@ -1436,7 +1436,7 @@ group { name: "elm/genlist/base/default"; source: "elm"; script { set_state(PART:"shadow_left", "edge", 0.0); - set_state(PART:"shadow_right", "hidden", 0.0); + set_state(PART:"shadow_right", "edge_op", 0.0); } after: "edge_horizontal"; } @@ -1444,7 +1444,7 @@ group { name: "elm/genlist/base/default"; signal: "elm,edge,right"; source: "elm"; script { - set_state(PART:"shadow_left", "hidden", 0.0); + set_state(PART:"shadow_left", "edge_op", 0.0); set_state(PART:"shadow_right", "edge", 0.0); } after: "edge_horizontal"; -- 2.7.4