Updated font color name Fixes #1616

This commit is contained in:
staked-smart-ace 2021-01-19 19:02:47 +04:00 committed by Iuri Matias
parent 9edcb1dc4d
commit a289871482

View File

@ -223,11 +223,11 @@ ModalPopup {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 13 font.pixelSize: 13
StyledText { StyledText {
visible: model.userName === (profileModel.profile.preferredUsername || profileModel.profile.username) visible: model.pubKey === profileModel.profile.pubKey
anchors.left: parent.right anchors.left: parent.right
anchors.leftMargin: 5 anchors.leftMargin: 5
text: "(You)" text: qsTr("(You)")
color: Style.current.darkGrey color: Style.current.secondaryText
font.pixelSize: parent.font.pixelSize font.pixelSize: parent.font.pixelSize
} }
MouseArea { MouseArea {
@ -248,7 +248,7 @@ ModalPopup {
anchors.right: parent.right anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 13 font.pixelSize: 13
color: Style.current.darkGrey color: Style.current.secondaryText
} }
StyledText { StyledText {
@ -260,7 +260,7 @@ ModalPopup {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 20 font.pixelSize: 20
font.bold: true font.bold: true
color: Style.current.darkGrey color: Style.current.secondaryText
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onClicked: { onClicked: {