diff options
| author | Jacob Brydolf <jacob@brydolf.net> | 2016-10-03 23:29:30 +0200 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-10-10 00:15:17 +0300 |
| commit | af70c81082bad6fc83fdf3b591fd19a1fc8bdc26 (patch) | |
| tree | 405d73c6c71a59924ea2d52af1ce0a2e86fd7ed0 /LeftPanel.qml | |
| parent | 6a5095194054b5023e8fb02e5399fd0f0b10512d (diff) | |
| download | monzero-gui-af70c81082bad6fc83fdf3b591fd19a1fc8bdc26.tar.gz monzero-gui-af70c81082bad6fc83fdf3b591fd19a1fc8bdc26.tar.xz monzero-gui-af70c81082bad6fc83fdf3b591fd19a1fc8bdc26.zip | |
Added daemon BC sync progress bar
depends on https://github.com/monero-project/monero/pull/1173
Signed-off-by: Jacob Brydolf <jacob@brydolf.net>
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 59793659..93290bc6 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -36,6 +36,7 @@ Rectangle { property alias unlockedBalanceText: unlockedBalanceText.text property alias balanceText: balanceText.text property alias networkStatus : networkStatus + property alias daemonProgress : daemonProgress signal dashboardClicked() signal historyClicked() @@ -352,9 +353,16 @@ Rectangle { id: networkStatus anchors.left: parent.left anchors.right: parent.right - anchors.bottom: parent.bottom + anchors.bottom: (daemonProgress.visible)? daemonProgress.top : parent.bottom; connected: false } + + DaemonProgress { + id: daemonProgress + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + } } // indicate disabled state Desaturate { |
