mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 04:37:48 +02:00
Fix rez certified...
This commit is contained in:
parent
949da17046
commit
de50eef9c7
3 changed files with 4 additions and 7 deletions
|
@ -39,7 +39,7 @@ Rectangle {
|
||||||
property bool itemIsJson: true;
|
property bool itemIsJson: true;
|
||||||
property bool shouldBuyWithControlledFailure: false;
|
property bool shouldBuyWithControlledFailure: false;
|
||||||
property bool debugCheckoutSuccess: false;
|
property bool debugCheckoutSuccess: false;
|
||||||
property bool canRezCertifiedItems: Entities.canRezCertified || Entities.canRezTmpCertified;
|
property bool canRezCertifiedItems: Entities.canRezCertified() || Entities.canRezTmpCertified();
|
||||||
property bool isWearable;
|
property bool isWearable;
|
||||||
// Style
|
// Style
|
||||||
color: hifi.colors.white;
|
color: hifi.colors.white;
|
||||||
|
|
|
@ -32,7 +32,7 @@ Rectangle {
|
||||||
property bool securityImageResultReceived: false;
|
property bool securityImageResultReceived: false;
|
||||||
property bool purchasesReceived: false;
|
property bool purchasesReceived: false;
|
||||||
property bool punctuationMode: false;
|
property bool punctuationMode: false;
|
||||||
property bool canRezCertifiedItems: Entities.canRezCertified || Entities.canRezTmpCertified;
|
property bool canRezCertifiedItems: Entities.canRezCertified() || Entities.canRezTmpCertified();
|
||||||
property bool pendingInventoryReply: true;
|
property bool pendingInventoryReply: true;
|
||||||
property bool isShowingMyItems: false;
|
property bool isShowingMyItems: false;
|
||||||
property bool isDebuggingFirstUseTutorial: false;
|
property bool isDebuggingFirstUseTutorial: false;
|
||||||
|
|
|
@ -75,8 +75,7 @@
|
||||||
itemPrice: (debugError ? 10 : 17),
|
itemPrice: (debugError ? 10 : 17),
|
||||||
itemHref: 'http://mpassets.highfidelity.com/0d90d21c-ce7a-4990-ad18-e9d2cf991027-v1/flaregun.json',
|
itemHref: 'http://mpassets.highfidelity.com/0d90d21c-ce7a-4990-ad18-e9d2cf991027-v1/flaregun.json',
|
||||||
categories: ["Wearables", "Miscellaneous"]
|
categories: ["Wearables", "Miscellaneous"]
|
||||||
},
|
}
|
||||||
canRezCertifiedItems: Entities.canRezCertified || Entities.canRezTmpCertified
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,7 +115,6 @@
|
||||||
if (url === MARKETPLACE_PURCHASES_QML_PATH) {
|
if (url === MARKETPLACE_PURCHASES_QML_PATH) {
|
||||||
tablet.sendToQml({
|
tablet.sendToQml({
|
||||||
method: 'updatePurchases',
|
method: 'updatePurchases',
|
||||||
canRezCertifiedItems: Entities.canRezCertified || Entities.canRezTmpCertified,
|
|
||||||
referrerURL: referrerURL,
|
referrerURL: referrerURL,
|
||||||
filterText: filterText
|
filterText: filterText
|
||||||
});
|
});
|
||||||
|
@ -204,8 +202,7 @@
|
||||||
tablet.pushOntoStack(MARKETPLACE_CHECKOUT_QML_PATH);
|
tablet.pushOntoStack(MARKETPLACE_CHECKOUT_QML_PATH);
|
||||||
tablet.sendToQml({
|
tablet.sendToQml({
|
||||||
method: 'updateCheckoutQML',
|
method: 'updateCheckoutQML',
|
||||||
params: parsedJsonMessage,
|
params: parsedJsonMessage
|
||||||
canRezCertifiedItems: Entities.canRezCertified || Entities.canRezTmpCertified
|
|
||||||
});
|
});
|
||||||
} else if (parsedJsonMessage.type === "REQUEST_SETTING") {
|
} else if (parsedJsonMessage.type === "REQUEST_SETTING") {
|
||||||
sendCommerceSettings();
|
sendCommerceSettings();
|
||||||
|
|
Loading…
Reference in a new issue