Merge pull request #303 from william-lohan/remove-commerce-options-from-wearables-ui-275

Remove commerce options from wearables ui
This commit is contained in:
Julian Groß 2023-01-08 19:56:55 +01:00 committed by GitHub
commit c5d866a866
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 34 deletions

View file

@ -235,22 +235,6 @@ Rectangle {
Layout.alignment: Qt.AlignVCenter
}
spacing: 10
RalewayBold {
size: 15;
lineHeightMode: Text.FixedHeight
lineHeight: 18;
text: "<a href='#'>Get more</a>"
linkColor: hifi.colors.blueHighlight
Layout.alignment: Qt.AlignVCenter
onLinkActivated: {
popup.showGetWearables(null, function(link) {
emitSendToScript({'method' : 'navigate', 'url' : link})
});
}
}
Rectangle {
Layout.fillWidth: true
Layout.fillHeight: true

View file

@ -56,24 +56,6 @@ MessageBox {
popup.inputText.forceActiveFocus();
}
function showGetWearables(callback, linkCallback) {
popup.dialogButtons.yesButton.visible = false;
popup.button1text = 'CANCEL'
popup.titleText = 'Get Wearables'
popup.bodyText = 'Get wearables from <b><a href="app://marketplace">Marketplace.</a></b>' + '<br/>' +
'Wear wearable from <b><a href="app://purchases">Inventory.</a></b>'
popup.onLinkClicked = function(link) {
popup.close();
if (linkCallback) {
linkCallback(link);
}
}
popup.open();
}
function showDeleteFavorite(favoriteName, callback) {
popup.titleText = 'Delete Favorite: {AvatarName}'.replace('{AvatarName}', favoriteName)
popup.bodyText = 'This will delete your favorite. You will retain access to the wearables and avatar that made up the favorite from Inventory.'