Browse Source

Fix overlooked assignment.

pull/3203/head
Dariusz Komosinski 6 years ago
parent
commit
c864f5592c
  1. 2
      src/Avalonia.Layout/Layoutable.cs

2
src/Avalonia.Layout/Layoutable.cs

@ -535,7 +535,7 @@ namespace Avalonia.Layout
if (!double.IsNaN(heightCache))
{
height = Height;
height = heightCache;
}
}

Loading…
Cancel
Save