summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTae-Hwan Kim <the81.kim@samsung.com>2014-09-03 17:04:37 +0200
committerCedric BAIL <cedric@osg.samsung.com>2014-09-03 17:06:00 +0200
commit196533a1114248904f1c0a1c8585c37e60a96522 (patch)
treeab1bc518af1756d3f319750c106cb6b3f09b080e
parent646f858c3ae24092060b373f6dd5bdd3f62533c9 (diff)
downloadelementary-1.8.tar.gz
elm_map: the widget use efreet cache home to save image files to, so efreet should be initialized.elementary-1.8
Summary: @fix Reviewers: raster Differential Revision: https://phab.enlightenment.org/D1371 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/lib/elm_map.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/elm_map.c b/src/lib/elm_map.c
index beaf23fee..d2b18f795 100644
--- a/src/lib/elm_map.c
+++ b/src/lib/elm_map.c
@@ -4051,6 +4051,9 @@ _elm_map_smart_add(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
priv->mode = ELM_MAP_ZOOM_MODE_MANUAL;
+ if (!elm_need_efreet())
+ ERR("Efreet initialization failed!");
+
if (!ecore_file_download_protocol_available("http://"))
ERR("Ecore must be built with curl support for the map widget!");
}