diff options
author | 2019-09-17 23:29:26 -0700 | |
---|---|---|
committer | 2019-10-04 21:15:20 +0000 | |
commit | a2556f196bf439a270c7a6659daeb4434b45cf85 (patch) | |
tree | 923ea0c6d38cdb8d2e58491396d77c09cc27c8e6 /app/NotificationPage.qml | |
parent | 4ab3093e029628fbd1ca73891c81373be884e85f (diff) |
messaging: add initial compose message pagehalibut_8.0.6halibut_8.0.5halibut_8.0.4halibut_8.0.3halibut_8.0.2halibut/8.0.6halibut/8.0.5halibut/8.0.4halibut/8.0.3halibut/8.0.28.0.68.0.58.0.48.0.38.0.2halibut
Add initial support for sending SMS messages. Along with support
for double clicking a message to autofill recipient field.
Bug-AGL: SPEC-2566
Change-Id: I214c2250f90d939c95b5e380272b37c0ba8dad64
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/NotificationPage.qml')
-rw-r--r-- | app/NotificationPage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/NotificationPage.qml b/app/NotificationPage.qml index 6ce5e4a..e57cacf 100644 --- a/app/NotificationPage.qml +++ b/app/NotificationPage.qml @@ -26,7 +26,7 @@ Item { target: messaging onNotificationEvent: { - notificationModel.append({"name": message.sender.fn, "message": message.message }) + notificationModel.append({"name": message.sender.fn, "number": message.sender.tel, "message": message.message }) notificationView.currentIndex = notificationModel.count - 1 } } |