diff --git a/src/Logic/Forms/RemoveTextForHI.cs b/src/Logic/Forms/RemoveTextForHI.cs index aa606d85f..72659cb85 100644 --- a/src/Logic/Forms/RemoveTextForHI.cs +++ b/src/Logic/Forms/RemoveTextForHI.cs @@ -196,7 +196,9 @@ namespace Nikse.SubtitleEdit.Logic.Forms int colonIndex = s2.IndexOf(":", StringComparison.Ordinal); string start = s2.Substring(0, colonIndex); - bool doContinue = !Settings.RemoveTextBeforeColonOnlyUppercase && start != start.ToUpper(); + bool doContinue = true; + if (Settings.RemoveTextBeforeColonOnlyUppercase && start != start.ToUpper()) + doContinue = false; if (doContinue) {