discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=684637394a03fcee781f14094a334c75d50ec12c
commit 684637394a03fcee781f14094a334c75d50ec12c Author: Mike Blumenkrantz <[email protected]> Date: Mon Jun 16 11:57:00 2014 -0400 bugfix: Navigate menu is now sorted case insensitively fix T1346 --- src/modules/fileman/e_mod_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/fileman/e_mod_menu.c b/src/modules/fileman/e_mod_menu.c index fc81cf5..088a39f 100644 --- a/src/modules/fileman/e_mod_menu.c +++ b/src/modules/fileman/e_mod_menu.c @@ -224,7 +224,7 @@ _e_mod_menu_populate_err(void *data, Eio_File *handler __UNUSED__, int error __U static int _e_mod_menu_populate_sort(E_Menu_Item *a, E_Menu_Item *b) { - return strcmp(a->label, b->label); + return strcasecmp(a->label, b->label); } static void --
