projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d61833
)
e_comp_object: Fix emitting wrong signal for DIM effect
60/80160/1
author
Amarnath
<a.amarnath@samsung.com>
Fri, 15 Jul 2016 04:14:51 +0000
(09:44 +0530)
committer
Amarnath
<a.amarnath@samsung.com>
Fri, 15 Jul 2016 04:14:51 +0000
(09:44 +0530)
Change-Id: I1fe9dc88624583b302b930862a48ff29e9d4e1b8
Signed-off-by: Amarnath <a.amarnath@samsung.com>
src/bin/e_comp_object.c
patch
|
blob
|
history
diff --git
a/src/bin/e_comp_object.c
b/src/bin/e_comp_object.c
index c6ff23779c746a4f35f9e0753ce2217675a8e349..62618ccb46b5dab5d84430b921e0fb4e17a11126 100644
(file)
--- a/
src/bin/e_comp_object.c
+++ b/
src/bin/e_comp_object.c
@@
-4652,7
+4652,7
@@
_e_comp_object_dim_update(E_Comp_Object *cw)
if (!cw->effect_obj) return;
if (cw->dim_enable)
{
- edje_object_signal_emit(cw->effect_obj, (cw->dim_enable ? "e,state,
vd,dim,on,noeffect" : "e,state,vd
,dim,off,noeffect"), "e");
+ edje_object_signal_emit(cw->effect_obj, (cw->dim_enable ? "e,state,
dim,on,noeffect" : "e,state
,dim,off,noeffect"), "e");
INF("[DIM] Applied on Client[%p] enable[%d]\n",cw->ec, cw->dim_enable);
}
}