From 4191c37f6e307cc803f90629b5bbb23019b33783 Mon Sep 17 00:00:00 2001 From: Howard Stearns Date: Tue, 9 Jul 2019 14:48:17 -0700 Subject: [PATCH] indentation --- .../simplifiedUI/topBar/SimplifiedTopBar.qml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml b/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml index 45450383b5..822e485940 100644 --- a/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml +++ b/interface/resources/qml/hifi/simplifiedUI/topBar/SimplifiedTopBar.qml @@ -77,19 +77,19 @@ Rectangle { } switch (walletStatus) { - case 1: - var randomNumber = Math.floor(Math.random() * 34) + 1; - var securityImagePath = "images/" + randomNumber.toString().padStart(2, '0') + ".jpg"; - Commerce.getWalletAuthenticatedStatus(); // before writing security image, ensures that salt/account password is set. - Commerce.chooseSecurityImage(securityImagePath); - Commerce.generateKeyPair() - Commerce.getWalletStatus(); - break; - case 5: - topBarInventoryModel.getFirstPage(); - break; - default: - console.log('WARNING: SimplifiedTopBar.qml walletStatusResult:', walletStatus); + case 1: + var randomNumber = Math.floor(Math.random() * 34) + 1; + var securityImagePath = "images/" + randomNumber.toString().padStart(2, '0') + ".jpg"; + Commerce.getWalletAuthenticatedStatus(); // before writing security image, ensures that salt/account password is set. + Commerce.chooseSecurityImage(securityImagePath); + Commerce.generateKeyPair() + Commerce.getWalletStatus(); + break; + case 5: + topBarInventoryModel.getFirstPage(); + break; + default: + console.log('WARNING: SimplifiedTopBar.qml walletStatusResult:', walletStatus); } }