Skip to content

Commit

Permalink
fix: close #1105
Browse files Browse the repository at this point in the history
  • Loading branch information
NaBian committed Oct 27, 2022
1 parent bf12723 commit 31501d1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Shared/HandyControl_Shared/Controls/Panel/Grid/Row.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ protected override Size ArrangeOverride(Size finalSize)

foreach (var child in InternalChildren.OfType<Col>())
{
if (!child.IsVisible)
{
continue;
}

var cellCount = child.GetLayoutCellCount(_layoutStatus);
totalCellCount += cellCount;

Expand Down

0 comments on commit 31501d1

Please sign in to comment.