Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.2.1, 5.5.1, 5.6
-
Mac 10.9
-
3e5a89ae70eb612afef0d593f180a57da17c782f
Description
emoji characters are displayed in single colour (text colour) in Text element.
import QtQuick 2.0 Rectangle { width: 360 height: 360 Text { id: myText text:"\uD83D\uDE1C\uD83D\uDE17\uD83D\uDE0A\uD83D\uDE1C\uD83D\uDE1D\uD83D\uDE1D\uD83D\uDE09" renderType: Text.NativeRendering anchors.centerIn: parent onTextChanged: { console.log(text); } } MouseArea { anchors.fill: parent onClicked: { myText.text = "\u2601\ud83d\ude32"; } } }
The console log on QtCreator actually shows the emoji in the correct colour
Attachments
Issue Links
- is replaced by
-
QTBUG-45514 Symbols from the Apple Color Emoji font are not being rendered properly in Qml
-
- Closed
-