Skip to content

Commit

Permalink
Fix for Layout Cell IsHidden flag
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Aug 20, 2023
1 parent ad9b64b commit ca778eb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions FetchXmlBuilder/Views/LayoutXML.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ internal void MakeSureAllCellsExistForColumns(Dictionary<string, int> namewidths
Attribute = fxb.dockControlBuilder.GetAttributeNodeFromLayoutName(nw.Key)
}));
Cells.ToList().ForEach(c => c.Width = namewidths.ContainsKey(c.Name) ? namewidths[c.Name] : 0);
Cells.ToList().ForEach(c => c.IsHidden = c.Width < 5);
int index = 0;
foreach (var nw in namewidths)
{
Expand Down

0 comments on commit ca778eb

Please sign in to comment.