B2018-006 - Clicking on a step while a step is expanding causes PROMS to crash. The code has been changed to ignore the clicck while the code is expanding a step.

This commit is contained in:
Rich 2018-01-18 14:21:37 +00:00
parent 89a9519caa
commit 32d6728744

View File

@ -450,6 +450,8 @@ namespace Volian.Controls.Library
private bool _ProcessingEnter = false;
private void _StepRTB_Enter(object sender, EventArgs e)
{
// B2018-006 If a step is expanding, don't handle the enter event
if (MyStepPanel.ExpandingHLS != null) return;
if (MyStepPanel.DisplayItemChanging) return;
//vlnStackTrace.ShowStack("_StepRTB_Enter {0}",this.MyID);
MyStepPanel.SelectedEditItem = this;