jaehwan pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=815cee6902c325ae9cc73cc1635b670863a1b0c7
commit 815cee6902c325ae9cc73cc1635b670863a1b0c7 Author: Jaehwan Kim <[email protected]> Date: Tue Jan 3 15:09:04 2017 +0900 groupview: set the edje object scale to own base scale. If the scale is different with base scale, it changes the size of the highlight area. --- src/bin/ui/workspace/groupview.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/ui/workspace/groupview.c b/src/bin/ui/workspace/groupview.c index b01e181..2b917b9 100644 --- a/src/bin/ui/workspace/groupview.c +++ b/src/bin/ui/workspace/groupview.c @@ -276,6 +276,7 @@ groupview_add(Evas_Object *parent, Group2 *group) TODO("set the state for all parts to default 0.0") sd->group = group; evas_object_smart_member_add(sd->group->edit_object, obj); + edje_object_scale_set(sd->group->edit_object, edje_object_base_scale_get(sd->group->edit_object)); sd->box = elm_box_add(parent); elm_box_layout_set(sd->box, _parts_stack_layout, sd, NULL); --
