mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +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(
|
asyncEnum = asyncEnum.Where(
|
||||||
x => (x.Name.ToLower().Contains(this.searchText.ToLower()) ||
|
x => (x.Name.ToLower().Contains(this.searchText.ToLower()) ||
|
||||||
int.TryParse(this.searchText, out var parsedId) &&
|
int.TryParse(this.searchText, out var parsedId) &&
|
||||||
parsedId == x.RowId));
|
parsedId == x.RowId) && x.Icon < 65000);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.currentKind != 0)
|
if (this.currentKind != 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue