diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-25 01:57:22 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-25 01:57:22 +0800 |
commit | 6ecbbe4006b8d1c5b40e3b268cd78a6b57605018 (patch) | |
tree | 2cae25e87799396d256d53696141f89ff2df97c9 /mist/assets/qml | |
parent | acfb5b85fbd48e2096652552e65c3c7000faca8f (diff) | |
download | dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.tar dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.tar.gz dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.tar.bz2 dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.tar.lz dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.tar.xz dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.tar.zst dexon-6ecbbe4006b8d1c5b40e3b268cd78a6b57605018.zip |
Download indicator
Diffstat (limited to 'mist/assets/qml')
-rw-r--r-- | mist/assets/qml/wallet.qml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/mist/assets/qml/wallet.qml b/mist/assets/qml/wallet.qml index 6075b621b..885d09116 100644 --- a/mist/assets/qml/wallet.qml +++ b/mist/assets/qml/wallet.qml @@ -254,6 +254,7 @@ ApplicationWindow { statusBar: StatusBar { height: 32 + id: statusBar RowLayout { Button { id: miningButton @@ -294,16 +295,16 @@ ApplicationWindow { } ProgressBar { - id: syncProgressIndicator - visible: false - objectName: "syncProgressIndicator" + id: downloadIndicator + value: 0 + visible: true + objectName: "downloadIndicator" y: 3 - width: 140 - indeterminate: true - anchors.right: peerGroup.left - anchors.rightMargin: 5 + x: statusBar.width / 2 - this.width / 2 + width: 160 } + RowLayout { id: peerGroup y: 7 |