raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ae2be0c2d3508780de15afa9b1adb023b9476b14
commit ae2be0c2d3508780de15afa9b1adb023b9476b14 Author: Vorobiov Vitalii <vi.vorob...@samsung.com> Date: Sat Dec 14 18:26:30 2013 +0900 edje: Fixing little misbehavior of edje_edit_state_rel_to_set Summary: After making part relative to the whole interface (by giving NULL parameter) it was returning EINA_FALSE (not successfull). Reviewers: seoz, cedric, raster Reviewed By: raster CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D379 --- src/lib/edje/edje_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/edje/edje_edit.c b/src/lib/edje/edje_edit.c index 68d9561..97fe9c6 100644 --- a/src/lib/edje/edje_edit.c +++ b/src/lib/edje/edje_edit.c @@ -3252,7 +3252,7 @@ FUNC_STATE_OFFSET_INT(rel2, y); else \ { \ pd->Sub.id_##Value = -1; \ - return EINA_FALSE; \ + return EINA_TRUE; \ } \ } //note after this call edje_edit_part_selected_state_set() to update !! need to fix this --