C2026-027-New-Set_At_All_Level-in-the-Applicability-tab-evaluate-having-the-button-grayed-out-for-the-RNO-column-3
This commit is contained in:
@@ -69,13 +69,16 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
MyItemInfo = _MyDisplayTabItem.MyItemInfo;
|
MyItemInfo = _MyDisplayTabItem.MyItemInfo;
|
||||||
}
|
}
|
||||||
if (MyItemInfo.IsRNOPart == true)
|
if (MyItemInfo != null)
|
||||||
{
|
{
|
||||||
btnApplicabilitychg.Enabled = false;
|
if (MyItemInfo.IsRNOPart == true) // Check if step is an RNO disable "Set All To Level" button.
|
||||||
}
|
{
|
||||||
else
|
btnApplicabilitychg.Enabled = false;
|
||||||
{
|
}
|
||||||
btnApplicabilitychg.Enabled = true;
|
else
|
||||||
|
{
|
||||||
|
btnApplicabilitychg.Enabled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -402,13 +405,16 @@ namespace Volian.Controls.Library
|
|||||||
if (_MyItemInfo != null)
|
if (_MyItemInfo != null)
|
||||||
{
|
{
|
||||||
if (this.Visible == false) return;
|
if (this.Visible == false) return;
|
||||||
if (_MyItemInfo.IsRNOPart == true) // Check if step is an RNO disable "Set All To Level" button.
|
if (MyItemInfo != null)
|
||||||
{
|
{
|
||||||
btnApplicabilitychg.Enabled = false;
|
if (MyItemInfo.IsRNOPart == true) // Check if step is an RNO disable "Set All To Level" button.
|
||||||
}
|
{
|
||||||
else
|
btnApplicabilitychg.Enabled = false;
|
||||||
{
|
}
|
||||||
btnApplicabilitychg.Enabled = true;
|
else
|
||||||
|
{
|
||||||
|
btnApplicabilitychg.Enabled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
IItemConfig cfg = _MyItemInfo.MyConfig as IItemConfig;
|
IItemConfig cfg = _MyItemInfo.MyConfig as IItemConfig;
|
||||||
List<int> apples = cfg.MasterSlave_Applicability.GetFlags();
|
List<int> apples = cfg.MasterSlave_Applicability.GetFlags();
|
||||||
|
|||||||
Reference in New Issue
Block a user