mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-01 22:47:26 -04:00
Added daemon BC sync progress bar
depends on https://github.com/monero-project/monero/pull/1173 Signed-off-by: Jacob Brydolf <jacob@brydolf.net>
This commit is contained in:
committed by
Ilya Kitaev
parent
6a50951940
commit
af70c81082
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user