diff options
| author | selsta <selsta@sent.at> | 2022-04-23 07:24:20 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2022-04-23 07:26:52 +0200 |
| commit | 37a5bdc331af9589714ed38c9804028076e079f0 (patch) | |
| tree | 613985b438a0f820092d876cd92308d9d2dc82b7 /main.qml | |
| parent | b31cc36de2cc612060b2db63f42a5af42756a719 (diff) | |
| download | monzero-gui-37a5bdc331af9589714ed38c9804028076e079f0.tar.gz monzero-gui-37a5bdc331af9589714ed38c9804028076e079f0.tar.xz monzero-gui-37a5bdc331af9589714ed38c9804028076e079f0.zip | |
main: only update fiat price with open wallet
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 22 |
1 files changed, 3 insertions, 19 deletions
@@ -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; |
