Fix uppercase 'i' inside lowercase word - "'I" no longer changed - thx Majid :)

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@950 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2012-01-26 04:43:35 +00:00
parent 4439c6ffcd
commit 5fa835bfe5

View File

@ -1574,7 +1574,8 @@ namespace Nikse.SubtitleEdit.Forms
}
}
}
else if (match.Index > 1 && ((st.StrippedText[match.Index - 1] == '\"') || (st.StrippedText[match.Index - 1] == '>') || (st.StrippedText[match.Index - 1] == '-')))
else if (match.Index > 1 && ((st.StrippedText[match.Index - 1] == '\"') || (st.StrippedText[match.Index - 1] == '\'') ||
(st.StrippedText[match.Index - 1] == '>') || (st.StrippedText[match.Index - 1] == '-')))
{
}
else