elm_object_part_content_set(more_option_layout, "elm.swallow.content", content);
Elm_Object_Item *nit = NULL;
- nit = elm_naviframe_item_push(nf, NULL, NULL, NULL, more_option_layout, "empty");
+ const char *item_style = NULL;
+ if (_WEARABLE)
+ item_style = "empty";
+ nit = elm_naviframe_item_push(nf, NULL, NULL, NULL, more_option_layout, item_style);
elm_naviframe_item_title_enabled_set(nit, EINA_FALSE, EINA_FALSE);
elm_naviframe_item_pop_cb_set(nit,
evas_object_size_hint_align_set(genlist, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_show(genlist);
- Elm_Object_Item *nf_emoticon_item = elm_naviframe_item_push(ad->naviframe, NULL, NULL, NULL, genlist, "empty");
+ const char *item_style = NULL;
+ if (_WEARABLE)
+ item_style = "empty";
+ Elm_Object_Item *nf_emoticon_item = elm_naviframe_item_push(ad->naviframe, NULL, NULL, NULL, genlist, item_style);
elm_naviframe_item_pop_cb_set(nf_emoticon_item, _custom_back_cb2, ad);
evas_object_resize(ad->naviframe, 360, 360);
evas_object_show(ad->naviframe);
- Elm_Object_Item *nf_item = elm_naviframe_item_push(ad->naviframe, NULL, NULL, NULL, box, "empty");
+ const char *item_style = NULL;
+ if (_WEARABLE)
+ item_style = "empty";
+ Elm_Object_Item *nf_item = elm_naviframe_item_push(ad->naviframe, NULL, NULL, NULL, box, item_style);
elm_naviframe_item_pop_cb_set(nf_item, custom_back_cb, NULL);
}
show_gl_focus(EINA_FALSE);
+ const char *item_style = NULL;
+ if (_WEARABLE)
+ item_style = "empty";
Elm_Object_Item *nf_main_item = elm_naviframe_item_push(navi,
NULL,
NULL,
NULL,
genlist,
- "empty");
+ item_style);
elm_naviframe_item_pop_cb_set(nf_main_item, back_cb, app_data);
evas_object_smart_callback_add(genlist, "realized", _item_realized, NULL);
*/
genlist = create_language_list(naviframe);
+ const char *item_style = NULL;
+ if (_WEARABLE)
+ item_style = "empty";
//item = elm_naviframe_item_push(naviframe, "IDS_VC_HEADER_VOICE_INPUT_LANGUAGE", NULL, NULL, genlist, NULL);
- elm_naviframe_item_push(naviframe, NULL, NULL, NULL, genlist, "empty");
+ elm_naviframe_item_push(naviframe, NULL, NULL, NULL, genlist, item_style);
//elm_object_item_domain_text_translatable_set(item, PACKAGE, EINA_TRUE);
g_setting_window = window;