From edc3d5a86a8615ca0e759284d197e7b0c3de2a27 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Wed, 28 Aug 2019 16:04:10 -0700 Subject: messaging: qml: add emoji and default notification font Select "Bitstream Vera" as text, and NotoColorEmoji for unicode emojis. "Bitstream Vera" is required to be set because DejaVuSans has BW unicode emojis which would have a higher priority. Bug-AGL: SPEC-2701 Change-Id: Ia2be48f8a17fac748a24e585b54933ca3bfde400 Signed-off-by: Matt Ranostay (cherry picked from commit 7fe0662f11de5414a0136f574e271ff10585186d) --- app/Notification.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Notification.qml b/app/Notification.qml index 45c98f6..f4facfa 100644 --- a/app/Notification.qml +++ b/app/Notification.qml @@ -12,6 +12,7 @@ Item { Label { text: '' + name + '' font.pixelSize: 42 + font.family: "Bitstream Vera", "Noto Emoji" wrapMode: Text.WordWrap } Label { @@ -20,6 +21,7 @@ Item { anchors.left: parent.left anchors.right: parent.right font.pixelSize: 32 + font.family: "Bitstream Vera", "Noto Emoji" wrapMode: Text.WordWrap } } -- cgit