Compare commits
No commits in common. "50d462e806bd03893022def28c3bb1aa2098b96d" and "bc7460d80171f0ba9836c23da73255d0cab60df0" have entirely different histories.
50d462e806
...
bc7460d801
1
.gitignore
vendored
1
.gitignore
vendored
@ -401,4 +401,3 @@ FodyWeavers.xsd
|
|||||||
|
|
||||||
/fmtall
|
/fmtall
|
||||||
/genmacall
|
/genmacall
|
||||||
AssemblyInfo.cs
|
|
@ -2323,7 +2323,10 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
foreach (Node tn in nodeCollection)
|
foreach (Node tn in nodeCollection)
|
||||||
{
|
{
|
||||||
tn.Checked = tn.Parent.Checked;
|
if (!tn.Checked)
|
||||||
|
tn.Checked = true;
|
||||||
|
else
|
||||||
|
tn.Checked = false;
|
||||||
|
|
||||||
if (tn.Nodes != null && tn.Nodes.Count > 0 && tn.Nodes[0].Text != DummyNodeText)
|
if (tn.Nodes != null && tn.Nodes.Count > 0 && tn.Nodes[0].Text != DummyNodeText)
|
||||||
CheckTreeNodeChildren(tn.Nodes);
|
CheckTreeNodeChildren(tn.Nodes);
|
||||||
@ -2556,15 +2559,10 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
if (sd == null)
|
if (sd == null)
|
||||||
{
|
{
|
||||||
//C2023-010: Since the tag is null for Word Sections and HLS types, we need to determine which one has been selected. Word sections we need
|
if (!lstCheckedStepTypesStr.Contains("WORD Sections"))
|
||||||
//to process, but we need to ignore adding HLS types.
|
|
||||||
if (n.Text == "WORD Sections")
|
|
||||||
{
|
{
|
||||||
if (!lstCheckedStepTypesStr.Contains("WORD Sections"))
|
lstCheckedStepTypes.Add(0); //use zero to identify attachment search
|
||||||
{
|
lstCheckedStepTypesStr.Add("WORD Sections");
|
||||||
lstCheckedStepTypes.Add(0); //use zero to identify attachment search
|
|
||||||
lstCheckedStepTypesStr.Add("WORD Sections");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -2582,13 +2580,8 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
if (sd == null)
|
if (sd == null)
|
||||||
{
|
{
|
||||||
//C2023-010: Since the tag is null for Word Sections and HLS types, we need to determine which one has been selected. Word sections we need
|
lstCheckedStepTypesStr.Remove("WORD Sections");
|
||||||
//to process, but we need to ignore removing HLS types since they were not added in the previous process.
|
lstCheckedStepTypes.Remove(0);
|
||||||
if (n.Text == "WORD Sections")
|
|
||||||
{
|
|
||||||
lstCheckedStepTypesStr.Remove("WORD Sections");
|
|
||||||
lstCheckedStepTypes.Remove(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -2597,17 +2590,6 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//C2023-010: Check if the node has children and if we need to process those children as well
|
|
||||||
if (n.HasChildNodes)
|
|
||||||
{
|
|
||||||
foreach (Node child in n.Nodes)
|
|
||||||
{
|
|
||||||
child.Checked = n.Checked;
|
|
||||||
advTreeStepTypes.SelectedNode = child;
|
|
||||||
advTreeStepTypes_AfterCheck(sender, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
buildStepTypePannelTitle();
|
buildStepTypePannelTitle();
|
||||||
|
|
||||||
// B2021-100: Enable/disable the RNO Only checkbox & WORD Sections tree node in Step Elements to Search.
|
// B2021-100: Enable/disable the RNO Only checkbox & WORD Sections tree node in Step Elements to Search.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user