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:
parent
89a9519caa
commit
32d6728744
@ -450,6 +450,8 @@ namespace Volian.Controls.Library
|
|||||||
private bool _ProcessingEnter = false;
|
private bool _ProcessingEnter = false;
|
||||||
private void _StepRTB_Enter(object sender, EventArgs e)
|
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;
|
if (MyStepPanel.DisplayItemChanging) return;
|
||||||
//vlnStackTrace.ShowStack("_StepRTB_Enter {0}",this.MyID);
|
//vlnStackTrace.ShowStack("_StepRTB_Enter {0}",this.MyID);
|
||||||
MyStepPanel.SelectedEditItem = this;
|
MyStepPanel.SelectedEditItem = this;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user