mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 23:15:31 +02:00
Not for sale explanation
This commit is contained in:
parent
79d0a0a0a8
commit
59200103af
1 changed files with 24 additions and 1 deletions
|
@ -256,7 +256,7 @@ Item {
|
|||
name: "errors"
|
||||
PropertyChanges {
|
||||
target: doctorStatusMessage
|
||||
text: "It seems your project has a few issues that will affect how it works in High Fidelity. "
|
||||
text: "Your avatar has a few issues."
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -306,6 +306,29 @@ Item {
|
|||
text: "You can upload your files to our servers to always access them, and to make your avatar visible to other users."
|
||||
}
|
||||
|
||||
RalewayRegular {
|
||||
id: notForSaleMessage
|
||||
|
||||
visible: root.hasSuccessfullyUploaded
|
||||
|
||||
color: 'white'
|
||||
linkColor: '#00B4EF'
|
||||
size: 20
|
||||
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: infoMessage.bottom
|
||||
|
||||
anchors.bottomMargin: 24
|
||||
|
||||
wrapMode: Text.Wrap
|
||||
text: "This item is not for sale yet, <a href='#'>learn more</a>."
|
||||
|
||||
onLinkActivated: {
|
||||
Qt.openUrlExternally("https://docs.highfidelity.com/sell/add-item/upload-avatar.html");
|
||||
}
|
||||
}
|
||||
|
||||
RalewayRegular {
|
||||
id: showErrorsLink
|
||||
|
||||
|
|
Loading…
Reference in a new issue