Reset the override changebar setting if the ChangeID is changed (calvert)
This commit is contained in:
parent
6c657832a2
commit
83c2ce7e66
@ -486,7 +486,12 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
MyEditItem.SaveContents();
|
MyEditItem.SaveContents();
|
||||||
StepConfig sc = CurItemInfo.MyConfig as StepConfig;
|
StepConfig sc = CurItemInfo.MyConfig as StepConfig;
|
||||||
sc.Step_ChangeID = tbChgID.Text;
|
// if the changeID changed, then reset the change bar override
|
||||||
|
if (sc.Step_ChangeID != tbChgID.Text)
|
||||||
|
{
|
||||||
|
sc.Step_ChangeID = tbChgID.Text;
|
||||||
|
sc.Step_CBOverride = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user