{
ad->main_menu_popup = __create_ctxpopup(ad);
- elm_ctxpopup_item_append(ad->main_menu_popup, _("IDS_ST_BODY_DELETE"),
+ Elm_Object_Item *it = NULL;
+ it = elm_ctxpopup_item_append(ad->main_menu_popup, _("IDS_ST_BODY_DELETE"),
NULL, __ctx_delete_click_cb, ad);
- elm_ctxpopup_item_append(ad->main_menu_popup,
+ elm_object_item_disabled_set(it,
+ (elm_genlist_items_count(ad->misces_genlist) == 0));
+ it = elm_ctxpopup_item_append(ad->main_menu_popup,
_("IDS_ST_HEADER_SORT_BY"), NULL,
__show_sort_by_menu_cb, ad);
+ elm_object_item_disabled_set(it,
+ (elm_genlist_items_count(ad->misces_genlist) == 0));
}
static void __show_more_menu_cb(void *data, Evas_Object *obj,