Fix lightbox stuck

This commit is contained in:
Zach Fox 2018-02-23 16:14:42 -08:00
parent f66e688f41
commit cc98eb6424

View file

@ -205,12 +205,11 @@ Item {
"This step cannot be undone."; "This step cannot be undone.";
lightboxPopup.button1color = hifi.buttons.red; lightboxPopup.button1color = hifi.buttons.red;
lightboxPopup.button1text = "YES, CREATE NEW WALLET"; lightboxPopup.button1text = "YES, CREATE NEW WALLET";
lightboxPopup.button1method = "proceed(true);"; lightboxPopup.button1method = "proceed(true);root.visible = false;";
lightboxPopup.button2text = "CANCEL"; lightboxPopup.button2text = "CANCEL";
lightboxPopup.button2method = "root.visible = false;" lightboxPopup.button2method = "root.visible = false;"
lightboxPopup.buttonLayout = "topbottom"; lightboxPopup.buttonLayout = "topbottom";
lightboxPopup.visible = true; lightboxPopup.visible = true;
} }
} }