From cce93d025e9a714fca30e103f1f3f03bdbbeac5c Mon Sep 17 00:00:00 2001 From: Anatoly Pulyaevskiy Date: Fri, 13 Apr 2018 15:26:52 -0700 Subject: [PATCH] Promote line height in text style created from paragraph style (flutter/engine#4995) --- engine/src/flutter/third_party/txt/src/txt/paragraph_style.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/flutter/third_party/txt/src/txt/paragraph_style.cc b/engine/src/flutter/third_party/txt/src/txt/paragraph_style.cc index 362f138bb30..5c00409782c 100644 --- a/engine/src/flutter/third_party/txt/src/txt/paragraph_style.cc +++ b/engine/src/flutter/third_party/txt/src/txt/paragraph_style.cc @@ -25,6 +25,7 @@ TextStyle ParagraphStyle::GetTextStyle() const { result.font_family = font_family; result.font_size = font_size; result.locale = locale; + result.height = line_height; return result; }