diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2016-12-14 13:48:12 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-12-14 13:48:12 +0100 |
| commit | 705bc83ae1aa0b808e99c714887b05ad1e5c0f70 (patch) | |
| tree | 44fc2df7e74c8f387eda9376ab510ebaea91aaf7 /LeftPanel.qml | |
| parent | 47edfd721129d2127600f250adca057b6c778af0 (diff) | |
| download | monzero-gui-705bc83ae1aa0b808e99c714887b05ad1e5c0f70.tar.gz monzero-gui-705bc83ae1aa0b808e99c714887b05ad1e5c0f70.tar.xz monzero-gui-705bc83ae1aa0b808e99c714887b05ad1e5c0f70.zip | |
move refresh progress to leftpanel
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 89665f59..b1bb1d49 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -37,7 +37,7 @@ Rectangle { property alias unlockedBalanceText: unlockedBalanceText.text property alias balanceText: balanceText.text property alias networkStatus : networkStatus - property alias daemonProgress : daemonProgress + property alias progressBar : progressBar signal dashboardClicked() signal historyClicked() @@ -408,12 +408,12 @@ Rectangle { id: networkStatus anchors.left: parent.left anchors.right: parent.right - anchors.bottom: (daemonProgress.visible)? daemonProgress.top : parent.bottom; + anchors.bottom: (progressBar.visible)? progressBar.top : parent.bottom; connected: Wallet.ConnectionStatus_Disconnected } - DaemonProgress { - id: daemonProgress + ProgressBar { + id: progressBar anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom |
