From 1bfc767dafc4bc967b4cb9602ce0b0e20444956a Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Thu, 31 Aug 2017 16:42:14 -0700 Subject: [PATCH] Quick fixes --- interface/resources/qml/hifi/commerce/wallet/Wallet.qml | 2 +- .../resources/qml/hifi/commerce/wallet/WalletSetupLightbox.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/commerce/wallet/Wallet.qml b/interface/resources/qml/hifi/commerce/wallet/Wallet.qml index 5adf37ba2b..5695d47a68 100644 --- a/interface/resources/qml/hifi/commerce/wallet/Wallet.qml +++ b/interface/resources/qml/hifi/commerce/wallet/Wallet.qml @@ -93,7 +93,7 @@ Rectangle { walletSetupLightbox.visible = false; } else if (msg.method === 'walletSetup_finished') { root.activeView = "initialize"; - commerce.getPassphraseSetupStatus(); + commerce.getLoginStatus(); } else if (msg.method === 'walletSetup_raiseKeyboard') { root.keyboardRaised = true; } else if (msg.method === 'walletSetup_lowerKeyboard') { diff --git a/interface/resources/qml/hifi/commerce/wallet/WalletSetupLightbox.qml b/interface/resources/qml/hifi/commerce/wallet/WalletSetupLightbox.qml index 982a2cf9a4..2c02dc78a5 100644 --- a/interface/resources/qml/hifi/commerce/wallet/WalletSetupLightbox.qml +++ b/interface/resources/qml/hifi/commerce/wallet/WalletSetupLightbox.qml @@ -210,7 +210,7 @@ Rectangle { onVisibleChanged: { if (visible) { - commerce.getPassphraseSetupStatus(); + commerce.getWalletAuthenticatedStatus(); } }