B2026-042-Fix-Null-Error-for-Set_At_All_Level-in-the-Applicability-tab-evaluate-having-the-button-grayed-out-for-the-RNO-column-4
This commit is contained in:
@@ -69,17 +69,6 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
MyItemInfo = _MyDisplayTabItem.MyItemInfo;
|
MyItemInfo = _MyDisplayTabItem.MyItemInfo;
|
||||||
}
|
}
|
||||||
if (MyItemInfo != null)
|
|
||||||
{
|
|
||||||
if (MyItemInfo.IsRNOPart == true) // Check if step is an RNO disable "Set All To Level" button.
|
|
||||||
{
|
|
||||||
btnApplicabilitychg.Enabled = false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
btnApplicabilitychg.Enabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -405,9 +394,9 @@ namespace Volian.Controls.Library
|
|||||||
if (_MyItemInfo != null)
|
if (_MyItemInfo != null)
|
||||||
{
|
{
|
||||||
if (this.Visible == false) return;
|
if (this.Visible == false) return;
|
||||||
if (MyItemInfo != null)
|
if (_MyItemInfo != null)
|
||||||
{
|
{
|
||||||
if (MyItemInfo.IsRNOPart == true) // Check if step is an RNO disable "Set All To Level" button.
|
if (_MyItemInfo.IsRNOPart == true) // Check if step is an RNO disable "Set All To Level" button.
|
||||||
{
|
{
|
||||||
btnApplicabilitychg.Enabled = false;
|
btnApplicabilitychg.Enabled = false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user