Browse Source

stackpanel copes with non-visible controls when arranging.

pull/2976/head
Dan Walmsley 7 years ago
parent
commit
69fa0f7f28
  1. 2
      src/Avalonia.Controls/StackPanel.cs

2
src/Avalonia.Controls/StackPanel.cs

@ -251,7 +251,7 @@ namespace Avalonia.Controls
{
var child = children[i];
if (child == null)
if (child == null || !child.IsVisible)
{ continue; }
if (fHorizontal)

Loading…
Cancel
Save