B2020-089: Page number transitions not resolving correctly in HLS that are upper cased

This commit is contained in:
2020-07-10 14:18:44 +00:00
parent af0d1ffa76
commit ff6e04b5df
4 changed files with 4 additions and 4 deletions

View File

@@ -573,7 +573,7 @@ namespace Volian.Controls.Library
myLength += m.Groups[3].Length;
}
string gg = ((string)MyFlexGrid[r, c]).Substring(myIndex, myLength);
if (gg.Contains("(Page ~)")) RtfTransPageNumList.Add(tid);
if (gg.ToUpper().Contains("(PAGE ~)")) RtfTransPageNumList.Add(tid); // B2020-089, check for upper case Page ~ in case step was upper cased
}
}
}