From 68f0ab53f4079890d30cc22f54462087fd6f02c4 Mon Sep 17 00:00:00 2001 From: molan-git <59296158+molan-git@users.noreply.github.com> Date: Wed, 29 Jan 2020 22:22:19 +0100 Subject: [PATCH] Update Conversation.qml --- qml/pages/Conversation.qml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/qml/pages/Conversation.qml b/qml/pages/Conversation.qml index cf95c41..72730ae 100644 --- a/qml/pages/Conversation.qml +++ b/qml/pages/Conversation.qml @@ -182,7 +182,6 @@ Page { id: toot anchors { top: warningContent.bottom - topMargin: Theme.paddingMediummas left: parent.left right: parent.right rightMargin: Theme.paddingMedium @@ -222,7 +221,9 @@ Page { right: parent.right rightMargin: Theme.paddingSmall } - icon.source: "../../qml/images/emojiselect.svg" + icon.source: "../../qml/images/emojiselect.svg" + (pressed + ? Theme.secondaryHighlightColor + : Theme.secondaryColor) onClicked: pageStack.push(firstWizardPage) } SilicaGridView { @@ -263,7 +264,6 @@ Page { } } IconButton { - id: btnContentWarning anchors { verticalCenter: privacy.verticalCenter @@ -323,7 +323,6 @@ Page { id: privacy anchors { top: toot.bottom - bottom: parent //topMargin: -Theme.paddingSmall*2 left: btnAddImage.right right: btnSend.left @@ -348,7 +347,7 @@ Page { } enabled: toot.text !== "" && toot.text.length < tootMaxChar onClicked: { - var visibility = [ "public", "unlisted", "private", "direct"]; + var visibility = [ "Public", "Unlisted", "Private", "Direct"]; var media_ids = []; for(var k = 0; k < mediaModel.count; k++){ console.log(mediaModel.get(k).id)