From c864f5592ce0dc80b8b5809ea35d283d9c8f98ad Mon Sep 17 00:00:00 2001 From: Dariusz Komosinski Date: Sun, 3 Nov 2019 18:29:58 +0100 Subject: [PATCH] Fix overlooked assignment. --- src/Avalonia.Layout/Layoutable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Layout/Layoutable.cs b/src/Avalonia.Layout/Layoutable.cs index 1dbe4652c0..4732808b91 100644 --- a/src/Avalonia.Layout/Layoutable.cs +++ b/src/Avalonia.Layout/Layoutable.cs @@ -535,7 +535,7 @@ namespace Avalonia.Layout if (!double.IsNaN(heightCache)) { - height = Height; + height = heightCache; } }