From 8650c7d09d30f78e88d292d10760cab3037ee9c5 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Mon, 5 Aug 2019 21:09:14 +0900 Subject: [PATCH] vg json: update missing change in 16d806ff92edab6c8d2d7440794b2c535aee9d21. --- src/static_libs/vg_common/vg_common_json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static_libs/vg_common/vg_common_json.c b/src/static_libs/vg_common/vg_common_json.c index 63270000e8..47923c95aa 100644 --- a/src/static_libs/vg_common/vg_common_json.c +++ b/src/static_libs/vg_common/vg_common_json.c @@ -466,7 +466,7 @@ vg_common_json_create_vg_node(Vg_File_Data *vfd) root = efl_add_ref(EFL_CANVAS_VG_CONTAINER_CLASS, NULL); if (!root) return EINA_FALSE; efl_key_data_set(root, _get_key_val((void *) tree), tree); - if (tree->name) efl_key_data_set(root, "_lot_node_name", tree->name); + if (tree->keypath) efl_key_data_set(root, "_lot_node_name", tree->keypath); vfd->root = root; } efl_gfx_color_set(root, tree->mAlpha, tree->mAlpha, tree->mAlpha, tree->mAlpha);