mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
Don't show invalid items in list at all
This commit is contained in:
parent
94c6546461
commit
219b4a3011
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ namespace Dalamud.Interface
|
|||
asyncEnum = asyncEnum.Where(
|
||||
x => (x.Name.ToLower().Contains(this.searchText.ToLower()) ||
|
||||
int.TryParse(this.searchText, out var parsedId) &&
|
||||
parsedId == x.RowId));
|
||||
parsedId == x.RowId) && x.Icon < 65000);
|
||||
}
|
||||
|
||||
if (this.currentKind != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue