Searches are no longer case sensitive
This commit is contained in:
@@ -360,7 +360,7 @@ static gboolean do_filter(GtkListBoxRow* row, gpointer data) {
|
||||
if(filter == NULL || strcmp(filter, "") == 0) {
|
||||
return TRUE;
|
||||
}
|
||||
if(strstr(text, filter) != NULL) {
|
||||
if(strcasestr(text, filter) != NULL) {
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
|
Reference in New Issue
Block a user