seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=e01f11f51978eb36fa6abf506c032d07e8dfc2e3
commit e01f11f51978eb36fa6abf506c032d07e8dfc2e3 Author: Daniel Juyung Seo <[email protected]> Date: Thu Oct 30 21:06:37 2014 +0900 check: Fix wrong signal source names. --- data/themes/edc/elm/check.edc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/themes/edc/elm/check.edc b/data/themes/edc/elm/check.edc index 47c3d0a..431cdc7 100644 --- a/data/themes/edc/elm/check.edc +++ b/data/themes/edc/elm/check.edc @@ -816,9 +816,9 @@ group { name: "elm/check/base/toggle"; } if (((get_int(is_rtl) == 1) && (dx <= 0.5)) || (get_int(is_rtl) == 0) && (dx > 0.5)) { - emit("elm,action,check,off", ""); + emit("elm,action,check,off", "elm"); } else { - emit("elm,action,check,on", ""); + emit("elm,action,check,on", "elm"); } } } @@ -849,9 +849,9 @@ group { name: "elm/check/base/toggle"; } if (((get_int(is_rtl) == 1) && (dx <= 0.5)) || (get_int(is_rtl) == 0) && (dx > 0.5)) { - emit("elm,action,check,on", ""); + emit("elm,action,check,on", "elm"); } else { - emit("elm,action,check,off", ""); + emit("elm,action,check,off", "elm"); } set_int(was_drag, 1); set_int(is_drag, 0); --
