From 8ad5fd4c7672125302140539eb4a2f7ed9e0ad87 Mon Sep 17 00:00:00 2001 From: selsta Date: Thu, 8 Oct 2020 21:22:27 +0200 Subject: [PATCH] main: wizard: console.log fixes --- main.qml | 2 +- wizard/WizardHome.qml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/main.qml b/main.qml index 11aa93f3..d8837116 100644 --- a/main.qml +++ b/main.qml @@ -1299,7 +1299,7 @@ ApplicationWindow { function fiatApiConvertToFiat(amount) { var ticker = persistentSettings.fiatPriceCurrency === "xmrusd" ? appWindow.fiatPriceXMRUSD : appWindow.fiatPriceXMREUR; if(ticker <= 0){ - console.log(fiatApiError("Invalid ticker value: " + ticker)); + fiatApiError("Invalid ticker value: " + ticker); return "?.??"; } return (amount * ticker).toFixed(2); diff --git a/wizard/WizardHome.qml b/wizard/WizardHome.qml index 589ec6c0..a7cb8834 100644 --- a/wizard/WizardHome.qml +++ b/wizard/WizardHome.qml @@ -222,7 +222,6 @@ Rectangle { validator: IntValidator { bottom: 1 } text: persistentSettings.kdfRounds ? persistentSettings.kdfRounds : "1" onTextChanged: { - console.log('x'); kdfRoundsText.text = persistentSettings.kdfRounds = parseInt(kdfRoundsText.text) >= 1 ? parseInt(kdfRoundsText.text) : 1; } }