hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=e3168daf3dc143b7c2c0234aa9127bbe37d413f5
commit e3168daf3dc143b7c2c0234aa9127bbe37d413f5 Author: ChunEon Park <[email protected]> Date: Wed Aug 13 19:19:44 2014 +0900 live_edit: access layout obj --- src/bin/live_edit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/live_edit.c b/src/bin/live_edit.c index e50c8e3..b446753 100644 --- a/src/bin/live_edit.c +++ b/src/bin/live_edit.c @@ -218,11 +218,11 @@ live_edit_layer_set(live_data *ld) edje_object_signal_callback_add(elm_layout_edje_get(layout), "mouse,up,1", "new_part_bg", new_part_mouse_up_cb, ld); - elm_layout_part_cursor_set(ld->layout, "new_part_bg", + elm_layout_part_cursor_set(layout, "new_part_bg", ELM_CURSOR_FLEUR); - elm_layout_part_cursor_set(ld->layout, "rel1.dragable", + elm_layout_part_cursor_set(layout, "rel1.dragable", ELM_CURSOR_TOP_LEFT_CORNER); - elm_layout_part_cursor_set(ld->layout, "rel2.dragable", + elm_layout_part_cursor_set(layout, "rel2.dragable", ELM_CURSOR_BOTTOM_RIGHT_CORNER); part_info_update(ld); ld->layout = layout; --
