check: Fix wrong signal source names.

This commit is contained in:
Daniel Juyung Seo 2014-10-30 21:06:37 +09:00
parent dd354b8dc5
commit b94db6c8f8
1 changed files with 4 additions and 4 deletions

View File

@ -816,9 +816,9 @@ group { name: "elm/check/base/toggle";
} }
if (((get_int(is_rtl) == 1) && (dx <= 0.5)) || if (((get_int(is_rtl) == 1) && (dx <= 0.5)) ||
(get_int(is_rtl) == 0) && (dx > 0.5)) { (get_int(is_rtl) == 0) && (dx > 0.5)) {
emit("elm,action,check,off", ""); emit("elm,action,check,off", "elm");
} else { } 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)) || if (((get_int(is_rtl) == 1) && (dx <= 0.5)) ||
(get_int(is_rtl) == 0) && (dx > 0.5)) { (get_int(is_rtl) == 0) && (dx > 0.5)) {
emit("elm,action,check,on", ""); emit("elm,action,check,on", "elm");
} else { } else {
emit("elm,action,check,off", ""); emit("elm,action,check,off", "elm");
} }
set_int(was_drag, 1); set_int(was_drag, 1);
set_int(is_drag, 0); set_int(is_drag, 0);