elm_web2: Fix possible crash when loaded the contents which contains form elements

ewebkit requires webkit theme to draw form elements so elm_web might be crashed
when ewebkit didn't get theme path at debug build.
This commit is contained in:
Ryuan Choi 2014-02-16 21:12:05 +09:00
parent 723ead8902
commit 83d00b0ab5
1 changed files with 3 additions and 0 deletions

View File

@ -143,6 +143,9 @@ _elm_web_smart_add(Eo *obj, void *_pd EINA_UNUSED, va_list *list EINA_UNUSED)
eo_do_super(obj, MY_CLASS, evas_obj_smart_add());
elm_widget_sub_object_parent_add(obj);
//TODO: need a way to change theme
ewk_view_theme_set(resize_obj, WEBKIT_DATADIR "/themes/default.edj");
_view_smart_callback_proxy(resize_obj, obj);
elm_widget_can_focus_set(obj, EINA_TRUE);
#endif