B2021-029: Blank lines appearing in search results

This commit is contained in:
Kathy Ruffing 2021-03-10 14:46:37 +00:00
parent cf126fe4ce
commit bbf3bcd0b1

View File

@ -728,7 +728,8 @@ namespace Volian.Controls.Library
MyEditItem.SaveContents();
StepConfig sc = CurItemInfo.MyConfig as StepConfig;
// if the changeID changed, then reset the change bar override
if (sc.Step_ChangeID != tbChgID.Text)
// B2021-029: don't change changeid if the config & text box are both empty
if (sc.Step_ChangeID != tbChgID.Text && sc.Step_ChangeID != null && tbChgID.Text != "")
{
sc.Step_ChangeID = tbChgID.Text;
sc.Step_CBOverride = null;