case insensitive lua functions library docs search
This commit is contained in:
parent
8a4e33981c
commit
50aaa61d2c
|
@ -22,7 +22,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (!string.IsNullOrWhiteSpace(FilterBox.Text))
|
if (!string.IsNullOrWhiteSpace(FilterBox.Text))
|
||||||
{
|
{
|
||||||
_filteredList = FunctionList
|
_filteredList = FunctionList
|
||||||
.Where(f => (f.Library + "." + f.Name).Contains(FilterBox.Text))
|
.Where(f => (f.Library + "." + f.Name).ToLowerInvariant().Contains(FilterBox.Text.ToLowerInvariant()))
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue