From eae2cf989bec1c02f1bb52d2b162efeb72384889 Mon Sep 17 00:00:00 2001 From: molan-git <59296158+molan-git@users.noreply.github.com> Date: Wed, 15 Jan 2020 21:22:18 +0000 Subject: [PATCH] 1.0.3-4 Changed send, content warning and add emoji icon in Conversation page for clarification --- qml/pages/Conversation.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qml/pages/Conversation.qml b/qml/pages/Conversation.qml index fbfc551..549466d 100644 --- a/qml/pages/Conversation.qml +++ b/qml/pages/Conversation.qml @@ -222,7 +222,7 @@ Page { right: parent.right rightMargin: Theme.paddingSmall } - icon.source: "image://theme/icon-s-mms?" + (pressed + icon.source: "image://theme/icon-s-edit?" + (pressed ? Theme.highlightColor : (warningContent.visible ? Theme.secondaryHighlightColor : Theme.primaryColor)) onClicked: pageStack.push(firstWizardPage) @@ -272,7 +272,7 @@ Page { left: parent.left leftMargin: Theme.paddingMedium } - icon.source: "image://theme/icon-s-high-importance?" + (pressed + icon.source: "image://theme/icon-s-warning?" + (pressed ? Theme.highlightColor : (warningContent.visible ? Theme.secondaryHighlightColor : Theme.primaryColor)) onClicked: warningContent.visible = !warningContent.visible @@ -345,7 +345,7 @@ Page { } IconButton { id: btnSend - icon.source: "image://theme/icon-m-enter?" + (pressed + icon.source: "image://theme/icon-m-send?" + (pressed ? Theme.highlightColor : Theme.primaryColor) anchors {