Browse Source

children of adorner layer that are not adorning controls can arrange with all available size.

pull/2453/head
Dan Walmsley 7 years ago
parent
commit
c7be61a66d
  1. 2
      src/Avalonia.Controls/Primitives/AdornerLayer.cs

2
src/Avalonia.Controls/Primitives/AdornerLayer.cs

@ -64,7 +64,7 @@ namespace Avalonia.Controls.Primitives
}
else
{
child.Arrange(new Rect(child.DesiredSize));
child.Arrange(new Rect(finalSize));
}
}

Loading…
Cancel
Save