mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-21 18:52:36 +01:00
Minor fix for FixUppercaseIInsideWords
git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@105 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
parent
f4e2dbc997
commit
356a6fbb23
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user