[SOLVED] i18n - chinese fonts
-
Hi guys!
I am working on app that is going to be translated into chinese. I'v been doing some tests and I have found out that chinese font seems to have diferen height or something, it seems like there is a blank space under font, check the picture:
"Image":https://www.dropbox.com/s/ba18ee647i9jbwm/chinese.png
In qml i have just Text element inside Rectangle, my Text have following code:
@
Text {
id: textField
text: container.text
color: header ? palette.activeFont : palette.font
height: container.height
width: container.width
font.pixelSize: 18
font.bold: showBorder
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
visible: !container.hide
wrapMode: Text.Wrap
elide: Text.ElideRight
}
@
Is there any workaround? Or you know some fonts that are working right? Thanks for any advice!