discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=931f1a830f7216f761586fa447df4f7a65dd9dd5
commit 931f1a830f7216f761586fa447df4f7a65dd9dd5 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Mon Feb 23 16:53:20 2015 -0500 set default text for edgebindings caption when no bindings exist --- src/modules/conf_bindings/e_int_config_edgebindings.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/conf_bindings/e_int_config_edgebindings.c b/src/modules/conf_bindings/e_int_config_edgebindings.c index 2cdacc8..79f0a24 100644 --- a/src/modules/conf_bindings/e_int_config_edgebindings.c +++ b/src/modules/conf_bindings/e_int_config_edgebindings.c @@ -937,6 +937,8 @@ _edge_grab_wnd_show(E_Config_Dialog_Data *cfdata) edje_object_part_text_set(cfdata->gui.o_selector, "e.text.selection", label); E_FREE(label); } + else + edje_object_part_text_set(cfdata->gui.o_selector, "e.text.selection", _("No edge selected")); evas_object_event_callback_add(o, EVAS_CALLBACK_MOUSE_DOWN, _edge_grab_wnd_selected_edge_cb, cfdata); --