Lua functions list - don't throw exceptiosn when filtering, don't know why it happens but this will squash it, and it isn't important enough to know why.
This commit is contained in:
parent
aa2ae170f3
commit
3f675b2053
|
@ -53,6 +53,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
text = string.Empty;
|
||||
|
||||
try
|
||||
{
|
||||
if (FilteredList.Any() && index < FilteredList.Count)
|
||||
{
|
||||
switch (column)
|
||||
{
|
||||
case 0:
|
||||
|
@ -72,6 +76,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
/* Eat it*/
|
||||
}
|
||||
}
|
||||
|
||||
private void OrderColumn(int column)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue