From 366dd935dda30aba1e44a168bdde7bf018cbeeac Mon Sep 17 00:00:00 2001 From: Howard Stearns Date: Fri, 1 Mar 2019 12:32:03 -0800 Subject: [PATCH] trading in has nothing to do with whether you own the new item --- interface/resources/qml/hifi/commerce/checkout/Checkout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml index 60114e3db9..c2bf745527 100644 --- a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml +++ b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml @@ -40,7 +40,7 @@ Rectangle { property string itemHref; property string itemAuthor; property int itemEdition: -1; - property bool hasSomethingToTradeIn: alreadyOwned && (itemEdition > 0); // i.e., don't trade in your artist's proof + property bool hasSomethingToTradeIn: itemEdition > 0; // i.e., don't trade in your artist's proof property bool isTradingIn: canUpdate && hasSomethingToTradeIn; property bool isStocking: (availability === 'not for sale') && (creator === Account.username) && !updated_item_id; property string certificateId;