fix a crash on vector drawing.

Basically, our efl objects need parents.
This code just obeys that efl programming rule.
This commit is contained in:
Hermet Park 2018-06-14 20:50:14 +09:00
parent 5fdd956379
commit 4b6a03e963
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ _create_arrow(Evas *e)
vg = evas_object_vg_add(e);
cont = evas_vg_container_add(NULL);
cont = evas_vg_container_add(vg);
tail = evas_vg_shape_add(cont);
evas_vg_node_color_set(tail, 0, 0, 0, 255);