Fix odd interaction of filtering from Batch

This commit is contained in:
Matt Nadareski
2020-09-23 16:21:01 -07:00
parent 2f71aeb736
commit 4439b90e2c
3 changed files with 5 additions and 5 deletions

View File

@@ -491,14 +491,14 @@ namespace SabreTools.Library.DatItems
#region SoftwareList
// Filter on DiskArea
if (DiskArea != null)
if (DiskAreaSpecified)
{
if (!DiskArea.PassesFilter(filter))
return false;
}
// Filter on Part
if (Part != null)
if (PartSpecified)
{
if (!Part.PassesFilter(filter))
return false;