Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Shared/HandyControl_Shared/Controls/Panel/Grid/Row.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ protected override Size ArrangeOverride(Size finalSize)

foreach (var child in cols)
{
if (!child.IsVisible)
// Check the local Visibility, not IsVisible: Cols skipped while the hosting
// window is hidden can never recover their layout once it is shown again.
if (child.Visibility != Visibility.Visible)
{
continue;
}
Expand Down