diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2018-03-15 16:35:47 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2018-03-15 16:35:47 +0100 |
| commit | 37cb0061eecc2b837fa41525108ca7c45271fde7 (patch) | |
| tree | cee6f0e74db5818522797fe653d09fc9415ef5d2 /LeftPanel.qml | |
| parent | 9038bb38034e76befc3a3ba2aa82e09424b08018 (diff) | |
| download | monzero-gui-37cb0061eecc2b837fa41525108ca7c45271fde7.tar.gz monzero-gui-37cb0061eecc2b837fa41525108ca7c45271fde7.tar.xz monzero-gui-37cb0061eecc2b837fa41525108ca7c45271fde7.zip | |
separate progress bars for daemon and wallet
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index c88b34f4..3d7a4945 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -39,6 +39,7 @@ Rectangle { property alias balanceText: balanceText.text property alias networkStatus : networkStatus property alias progressBar : progressBar + property alias daemonProgressBar : daemonProgressBar property alias minutesToUnlockTxt: unlockedBalanceLabel.text signal dashboardClicked() @@ -541,8 +542,20 @@ Rectangle { id: progressBar anchors.left: parent.left anchors.right: parent.right + anchors.bottom: daemonProgressBar.top + height: 35 * scaleRatio + syncType: qsTr("Wallet") + visible: networkStatus.connected + } + + ProgressBar { + id: daemonProgressBar + anchors.left: parent.left + anchors.right: parent.right anchors.bottom: parent.bottom height: 35 * scaleRatio + syncType: qsTr("Daemon") + visible: networkStatus.connected } } // menuRect |
