Reset fields when deleting the last multiple replace group

This commit is contained in:
OmrSi 2020-10-19 01:43:32 +03:00
parent 6285120d71
commit 68527b4314

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;
}
}