mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix odd interaction of filtering from Batch
This commit is contained in:
@@ -941,14 +941,14 @@ namespace SabreTools.Library.DatItems
|
||||
return false;
|
||||
|
||||
// Filter on DataArea
|
||||
if (DataArea != null)
|
||||
if (DataAreaSpecified)
|
||||
{
|
||||
if (!DataArea.PassesFilter(filter))
|
||||
return false;
|
||||
}
|
||||
|
||||
// Filter on Part
|
||||
if (Part != null)
|
||||
if (PartSpecified)
|
||||
{
|
||||
if (!Part.PassesFilter(filter))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user