Minor fix for FixUppercaseIInsideWords

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@105 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2010-10-28 19:17:18 +00:00
parent f4e2dbc997
commit 356a6fbb23

View File

@ -1309,7 +1309,7 @@ namespace Nikse.SubtitleEdit.Forms
AddFixToListView(p, i + 1, fixAction, oldText, p.Text);
}
}
else if (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] == '-')))
{
}
else