Case insensitive file browser list

This commit is contained in:
Willy-JL
2023-02-06 20:51:07 +00:00
parent 05ddeb3066
commit d6dcf0efa2
2 changed files with 2 additions and 2 deletions
@@ -88,7 +88,7 @@ static int ArchiveFile_t_cmp(const ArchiveFile_t* a, const ArchiveFile_t* b) {
return -1;
}
return furi_string_cmp(a->path, b->path);
return furi_string_cmpi(a->path, b->path);
}
#define M_OPL_ArchiveFile_t() \
@@ -84,7 +84,7 @@ static int BrowserItem_t_cmp(const BrowserItem_t* a, const BrowserItem_t* b) {
return -1;
}
return furi_string_cmp(a->path, b->path);
return furi_string_cmpi(a->path, b->path);
}
#define M_OPL_BrowserItem_t() \