rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=a33ec9e6c2b486265b2fffd3055df116c5243553
commit a33ec9e6c2b486265b2fffd3055df116c5243553 Author: Vyacheslav Reutskiy <[email protected]> Date: Thu Oct 1 11:48:15 2015 +0300 navigator: add confirm message for delte several layouts Change-Id: I30dbc0dcc0c491ba828027d371d4261f8bf69198 --- src/bin/ui/navigator.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/ui/navigator.c b/src/bin/ui/navigator.c index 9bbe9c8..5b8a353 100644 --- a/src/bin/ui/navigator.c +++ b/src/bin/ui/navigator.c @@ -554,6 +554,11 @@ _btn_del_group_cb(void *data __UNUSED__, glit = elm_genlist_selected_item_get(navigator.genlist); if (elm_genlist_item_type_get(glit) == ELM_GENLIST_ITEM_TREE) { + btn_res = popup_want_action(_("Confirm delete layouts"), + _("Are you sure you want to delete the selected layouts?<br>" + "All aliases will be delete too."), + NULL, NULL, BTN_OK|BTN_CANCEL, NULL, NULL); + if (BTN_CANCEL == btn_res) return; _folder_del(elm_object_item_data_get(glit)); return; } --
