Only process the first matching filter

This commit is contained in:
Andreas Schneider 2015-09-24 20:45:38 +02:00
parent ac039ee261
commit dd0bade723
1 changed files with 3 additions and 0 deletions

View File

@ -137,7 +137,10 @@ begin
for lineFilter in FLineFilters do
begin
if lineFilter.Matches(line, groupRanges) then
begin
WriteContent(line, lineFilter.Filters, groupRanges);
Break;
end;
end;
end;