From 37cb0061eecc2b837fa41525108ca7c45271fde7 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Thu, 15 Mar 2018 16:35:47 +0100 Subject: separate progress bars for daemon and wallet --- LeftPanel.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'LeftPanel.qml') 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 -- cgit v1.2.3