Merge pull request #4446 from OmrSi/multiple-replace-reset

Reset fields when deleting the last multiple replace group
This commit is contained in:
Nikolaj Olsson 2020-10-19 07:36:07 +02:00 committed by GitHub
commit 5c999643c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -904,6 +904,11 @@ namespace Nikse.SubtitleEdit.Forms
if (groups.Count == 0)
{
groupBoxReplaces.Text = string.Empty;
textBoxFind.Text = string.Empty;
textBoxReplace.Text = string.Empty;
textBoxDescription.Text = string.Empty;
textBoxDescription.Text = string.Empty;
radioButtonNormal.Checked = true;
}
}