bugfix: Navigate menu is now sorted case insensitively

fix T1346
This commit is contained in:
Mike Blumenkrantz 2014-06-16 11:57:00 -04:00
parent 9dac6785bc
commit 684637394a
1 changed files with 1 additions and 1 deletions

View File

@ -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