rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=ab1207ee3bc37d5795a5e01a5542ce3235cb041b
commit ab1207ee3bc37d5795a5e01a5542ce3235cb041b Author: Vitalii Vorobiov <[email protected]> Date: Fri Nov 27 18:48:03 2015 +0200 group_navigator: use RIGHT regexp for part name --- src/bin/ui/group_navigator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ui/group_navigator.c b/src/bin/ui/group_navigator.c index a49e240..4b851e1 100644 --- a/src/bin/ui/group_navigator.c +++ b/src/bin/ui/group_navigator.c @@ -1034,7 +1034,7 @@ group_navigator_add(Group *group) menu_item = elm_menu_item_add(pl->menu, NULL, NULL, _("Spacer"), _on_menu_add_part_clicked, &_type_spacer); elm_menu_item_icon_name_set(menu_item, "type_spacer"); - pl->name_validator = elm_validator_regexp_new(NAME_REGEX, NULL); + pl->name_validator = elm_validator_regexp_new(PART_NAME_REGEX, NULL); evas_object_smart_callback_add(ap.win, SIGNAL_EDITOR_STATE_ADDED, _editor_state_added_cb, pl); evas_object_smart_callback_add(ap.win, SIGNAL_EDITOR_STATE_DELETED, _editor_state_deleted_cb, pl); --
