diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-02-04 17:46:57 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-02-04 17:46:57 +0200 |
| commit | 739d24efb4864a84f9b6bfac34dc804e26bde77b (patch) | |
| tree | f71030206a20ca93981aa51bdeade495920c6304 /components | |
| parent | f2a583fd49f6070b8a641e749704b8b958e20537 (diff) | |
| parent | 0b41fbc858a95b99a6a6f5ab203368cfd4870044 (diff) | |
| download | monzero-gui-739d24efb4864a84f9b6bfac34dc804e26bde77b.tar.gz monzero-gui-739d24efb4864a84f9b6bfac34dc804e26bde77b.tar.xz monzero-gui-739d24efb4864a84f9b6bfac34dc804e26bde77b.zip | |
Merge pull request #442
0b41fbc Don't close/reopen when changing daemon requires #1655 (Jaquee)
2586404 sync progress improvements (Jaquee)
eb909e1 async connectionStatus and init (Jaquee)
cb3281d WalletManager: fix possible race (Jaquee)
9dbbd4c WalletManager: check connection before isMining() (Jaquee)
Diffstat (limited to 'components')
| -rw-r--r-- | components/ProgressBar.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/ProgressBar.qml b/components/ProgressBar.qml index 33f2c585..ec53ec61 100644 --- a/components/ProgressBar.qml +++ b/components/ProgressBar.qml @@ -42,7 +42,7 @@ Item { var progressLevel = ((currentBlock/targetBlock) * 100).toFixed(0); fillLevel = progressLevel progressText.text = qsTr("Synchronizing blocks %1/%2").arg(currentBlock.toFixed(0)).arg(targetBlock.toFixed(0)); - item.visible = (currentWallet.connected !== Wallet.ConnectionStatus_Disconnected) && (currentBlock < targetBlock) + progressBar.visible = currentBlock < targetBlock } } |
