elementary: Fix program signal for enable/disable of shadows

Summary: Elementary does not support toggling of shadows on windows,
but Enlightenment does so we need to use the proper program signal for
that.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-07-16 14:00:46 -04:00
parent 8961a0f246
commit 7541745c5d
1 changed files with 2 additions and 2 deletions

View File

@ -1311,12 +1311,12 @@ group { name: "elm/border/base/default";
}
programs {
program {
signal: "elm,state,shadow,on"; source: "elm";
signal: "e,state,shadow,on"; source: "e";
action: STATE_SET "default" 0.0;
target: "shadow_clip";
}
program {
signal: "elm,state,shadow,off"; source: "elm";
signal: "e,state,shadow,off"; source: "e";
action: STATE_SET "hidden" 0.0;
target: "shadow_clip";
}