fix(CreateChatView): adjust start chat page (#863)
Add fix from https://github.com/status-im/status-desktop/pull/7077 to demoapp
This commit is contained in:
parent
23e50341d2
commit
33786814b9
|
@ -98,16 +98,15 @@ Page {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
StatusBaseText {
|
StatusBaseText {
|
||||||
anchors.left: parent.left
|
width: Math.min(553, parent.width - 32)
|
||||||
anchors.leftMargin: 252
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.rightMargin: 252
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
anchors.verticalCenterOffset: -(headerRow.height/2)
|
anchors.verticalCenterOffset: -(headerRow.height/2)
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
visible: contactsModel.count === 0
|
visible: contactsModel.count === 0
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
|
font.pixelSize: 15
|
||||||
color: Theme.palette.baseColor1
|
color: Theme.palette.baseColor1
|
||||||
text: qsTr("You can only send direct messages to your Contacts.\n
|
text: qsTr("You can only send direct messages to your Contacts.\n
|
||||||
Send a contact request to the person you would like to chat with, you will be able to chat with them once they have accepted your contact request.")
|
Send a contact request to the person you would like to chat with, you will be able to chat with them once they have accepted your contact request.")
|
||||||
|
|
Loading…
Reference in New Issue