Skip to content

Commit ca778eb

Browse files
committed
Fix for Layout Cell IsHidden flag
1 parent ad9b64b commit ca778eb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

FetchXmlBuilder/Views/LayoutXML.cs

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ internal void MakeSureAllCellsExistForColumns(Dictionary<string, int> namewidths
116116
Attribute = fxb.dockControlBuilder.GetAttributeNodeFromLayoutName(nw.Key)
117117
}));
118118
Cells.ToList().ForEach(c => c.Width = namewidths.ContainsKey(c.Name) ? namewidths[c.Name] : 0);
119+
Cells.ToList().ForEach(c => c.IsHidden = c.Width < 5);
119120
int index = 0;
120121
foreach (var nw in namewidths)
121122
{

0 commit comments

Comments
 (0)