I am having an issue with wrapping text in a QML Text element for international language such as korean .
Text {
text: "안녕하세요 반갑습니다"
width: 100
wrapMode: Text.WordWrap
}
If I run this code, the text is displayed like this:
안녕하세요 반갑습
니다.
As you can see, the line breaks at the end of the third character of the second word. However, what I want is to break into a new line at the end of a word, not in the middle of a word. The proper output should be like this:
안녕하세요
반갑습니다.
Is there any way to solve this out? I am currently using Qt 5.1.1.