From dc1b3aef8f6b1423d8294c34c5bec9546cc692ad Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Wed, 18 Oct 2017 16:25:06 -0700 Subject: [PATCH] Don't show purchases tutorial if user clicks what is rez --- interface/resources/qml/hifi/commerce/checkout/Checkout.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml index c381988380..177dfed420 100644 --- a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml +++ b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml @@ -252,6 +252,7 @@ Rectangle { switch (message.method) { case 'tutorial_skipClicked': case 'tutorial_finished': + Settings.setValue("isFirstUseOfPurchases", false); root.activeView = "checkoutSuccess"; break; }