POChecker: added ability to ignore master files in directories where .pocheckerignore file is present

git-svn-id: trunk@60211 -
This commit is contained in:
maxim 2019-01-24 23:47:17 +00:00
parent 93e8639699
commit b439763004

View File

@ -633,7 +633,7 @@ begin
begin
Str := S[i];
//skip files that do not exist (anymore)
if FileExistsUtf8(Str) then
if (FileExistsUtf8(Str)) and (not FileExistsUTF8(ExtractFilePath(Str) + '.pocheckerignore')) then
begin
Idx := MasterPoListBox.Items.IndexOf(Str);
if (Idx = -1) then