From 37a5bdc331af9589714ed38c9804028076e079f0 Mon Sep 17 00:00:00 2001 From: selsta Date: Sat, 23 Apr 2022 07:24:20 +0200 Subject: [PATCH] main: only update fiat price with open wallet --- main.qml | 22 +++------------------- pages/settings/SettingsLayout.qml | 3 --- 2 files changed, 3 insertions(+), 22 deletions(-) diff --git a/main.qml b/main.qml index 2a82a693..31450032 100644 --- a/main.qml +++ b/main.qml @@ -1156,13 +1156,10 @@ ApplicationWindow { Timer { id: fiatPriceTimer interval: 1000 * 60; - running: persistentSettings.fiatPriceEnabled; + running: persistentSettings.fiatPriceEnabled && currentWallet !== undefined repeat: true - onTriggered: { - if(persistentSettings.fiatPriceEnabled) - appWindow.fiatApiRefresh(); - } - triggeredOnStart: false + onTriggered: appWindow.fiatApiRefresh() + triggeredOnStart: true } function fiatApiParseTicker(url, resp, currency){ @@ -1301,14 +1298,6 @@ ApplicationWindow { leftPanel.balanceFiatString = bFiat; } - function fiatTimerStart(){ - fiatPriceTimer.start(); - } - - function fiatTimerStop(){ - fiatPriceTimer.stop(); - } - function fiatApiError(msg){ console.log("fiatPriceError: " + msg); } @@ -1364,11 +1353,6 @@ ApplicationWindow { openWallet("wizard"); } - if(persistentSettings.fiatPriceEnabled){ - appWindow.fiatApiRefresh(); - appWindow.fiatTimerStart(); - } - const desktopEntryEnabled = (typeof builtWithDesktopEntry != "undefined") && builtWithDesktopEntry; if (persistentSettings.askDesktopShortcut && !persistentSettings.portable && desktopEntryEnabled) { persistentSettings.askDesktopShortcut = false; diff --git a/pages/settings/SettingsLayout.qml b/pages/settings/SettingsLayout.qml index 0e54f018..5ce192ba 100644 --- a/pages/settings/SettingsLayout.qml +++ b/pages/settings/SettingsLayout.qml @@ -165,7 +165,6 @@ Rectangle { if (!checked) { console.log("Disabled price conversion"); persistentSettings.fiatPriceEnabled = false; - appWindow.fiatTimerStop(); } } } @@ -232,8 +231,6 @@ Rectangle { onClicked: { console.log("Enabled price conversion"); persistentSettings.fiatPriceEnabled = true; - appWindow.fiatApiRefresh(); - appWindow.fiatTimerStart(); } } }