[Bug] Text/Label doesn't show many images with wrapMode
Hi everyone!
I use EmojiOne in my app, and I encountered this problem. If I set wrapMode into Text.Wrap or Text.WordWrap I don't see images if there are more images than can be input into one line.
My current Label config:
Label {
id: messageText
width: parent.parent.width - Theme.paddingMedium - messageAvatar.width
height: contentHeight
horizontalAlignment: out === 1 ? Text.AlignRight : Text.AlignLeft
text: EmojiOne.toImage(message)
textFormat: Text.StyledText
linkColor: readState === 1 ? Theme.secondaryColor : Theme.secondaryHighlightColor
color: readState === 1 ? Theme.primaryColor : Theme.highlightColor
wrapMode: Text.Wrap
onLinkActivated: Qt.openUrlExternally(link)
}