mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Minor "Remove text for HI" fix (all uppercase don't remove "OK") - thx Maksim :)
This commit is contained in:
parent
242d695d0f
commit
065bb35296
@ -1280,7 +1280,7 @@ namespace Nikse.SubtitleEdit.Core.Forms
|
||||
if (lineNoHtml == lineNoHtml.ToUpper() && lineNoHtml != lineNoHtml.ToLower())
|
||||
{
|
||||
var temp = lineNoHtml.TrimEnd(endTrimChars).Trim().Trim(trimChars);
|
||||
if (temp.Length == 1 || temp == "YES" || temp == "NO" || temp == "WHY" || temp == "HI")
|
||||
if (temp.Length == 1 || temp == "YES" || temp == "NO" || temp == "WHY" || temp == "HI" || temp == "OK")
|
||||
{
|
||||
sb.AppendLine(line);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user