1
0

qml: BalanceSummary sync progress

This commit is contained in:
Sander van Grieken
2023-02-02 00:11:37 +01:00
parent 41f137a127
commit 13e340870a

View File

@@ -25,9 +25,12 @@ Item {
TextHighlightPane {
id: balancePane
leftPadding: constants.paddingXLarge
rightPadding: constants.paddingXLarge
GridLayout {
columns: 3
opacity: Daemon.currentWallet.synchronizing ? 0 : 1
Label {
font.pixelSize: constants.fontSizeXLarge
@@ -112,6 +115,14 @@ Item {
}
Label {
opacity: Daemon.currentWallet.synchronizing ? 1 : 0
anchors.centerIn: balancePane
text: Daemon.currentWallet.synchronizingProgress
color: Material.accentColor
font.pixelSize: constants.fontSizeLarge
}
MouseArea {
anchors.fill: balancePane
onClicked: {