Browse Source

Fixed stack panel children spacing.

pull/2511/head
José Pedro 7 years ago
parent
commit
823a3559c7
No known key found for this signature in database GPG Key ID: B8247B9301707B83
  1. 5
      src/Avalonia.Controls/StackPanel.cs

5
src/Avalonia.Controls/StackPanel.cs

@ -233,6 +233,11 @@ namespace Avalonia.Controls
foreach (Control child in Children)
{
if (!child.IsVisible)
{
continue;
}
double childWidth = child.DesiredSize.Width;
double childHeight = child.DesiredSize.Height;

Loading…
Cancel
Save