Promote line height in text style created from paragraph style (flutter/engine#4995)

This commit is contained in:
Anatoly Pulyaevskiy 2018-04-13 15:26:52 -07:00 committed by Jason Simmons
parent 8ad80a986f
commit cce93d025e

View File

@ -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;
}