Tried fix for Issue 70 (new line fix was for Issue 73)

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@978 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2012-02-10 21:28:50 +00:00
parent 623243d108
commit 234ea5b4dd

View File

@ -2370,7 +2370,9 @@ namespace Nikse.SubtitleEdit.Forms
return;
}
}
textBoxSource.Text = string.Empty;
textBoxSource.TextChanged -= TextBoxSourceTextChanged;
textBoxSource.Text = string.Empty;
textBoxSource.TextChanged += TextBoxSourceTextChanged;
}
private void SettingsToolStripMenuItemClick(object sender, EventArgs e)