From ae2be0c2d3508780de15afa9b1adb023b9476b14 Mon Sep 17 00:00:00 2001 From: Vorobiov Vitalii Date: Sat, 14 Dec 2013 18:26:30 +0900 Subject: [PATCH] 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 68d95616d3..97fe9c6e43 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