summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-08-28 16:04:10 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2019-08-28 16:17:47 -0700
commit7fe0662f11de5414a0136f574e271ff10585186d (patch)
treec334ceca266a385f919d485e65a94e77648a7ed5
parentd24a8a6bc4b1241d1057d78006da3c5dac454dd1 (diff)
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 <matt.ranostay@konsulko.com>
-rw-r--r--app/Notification.qml2
1 files changed, 2 insertions, 0 deletions
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: '<b>' + name + '</b>'
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
}
}