From cc98eb64246810983d5dda6172fdcefa91ed16ca Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Fri, 23 Feb 2018 16:14:42 -0800 Subject: [PATCH] Fix lightbox stuck --- interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml b/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml index 47c438f72b..6234d82139 100644 --- a/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml +++ b/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml @@ -205,12 +205,11 @@ Item { "This step cannot be undone."; lightboxPopup.button1color = hifi.buttons.red; lightboxPopup.button1text = "YES, CREATE NEW WALLET"; - lightboxPopup.button1method = "proceed(true);"; + lightboxPopup.button1method = "proceed(true);root.visible = false;"; lightboxPopup.button2text = "CANCEL"; lightboxPopup.button2method = "root.visible = false;" lightboxPopup.buttonLayout = "topbottom"; lightboxPopup.visible = true; - } }