I have the following QML (Hosted in a TabbedPane, if that could possibly make any difference):
Container {
Label {
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
multiline: true
textStyle.fontSize: FontSize.XLarge
textStyle.lineHeight: 0.8
textStyle.color: Color.Black
}
}
Setting the textStyle.lineHeight property to something less than 1.0 does what I expect, except that the bottom line of text in the label is clipped at the bottom. Any ideas how to work around this, or if I'm doing something wrong?
Screenshot of results, from a Dev Alpha B device running OS 10.0.9.348. Results look the same on the 10.1 simulator.