Browse Source

follow-up fcbd25c1fd. fixes #8253

master
ThomasV 3 years ago
parent
commit
7c2f13a76e
  1. 4
      electrum/gui/qml/components/controls/BalanceSummary.qml

4
electrum/gui/qml/components/controls/BalanceSummary.qml

@ -42,7 +42,7 @@ Item {
GridLayout { GridLayout {
id: balanceLayout id: balanceLayout
columns: 3 columns: 3
opacity: Daemon.currentWallet.synchronizing || Network.status == 'disconnected' ? 0 : 1 opacity: Daemon.currentWallet.synchronizing || Network.server_status == 'disconnected' ? 0 : 1
Label { Label {
font.pixelSize: constants.fontSizeXLarge font.pixelSize: constants.fontSizeXLarge
@ -148,7 +148,7 @@ Item {
} }
Label { Label {
opacity: Network.status == 'disconnected' ? 1 : 0 opacity: Network.server_status == 'disconnected' ? 1 : 0
anchors.centerIn: balancePane anchors.centerIn: balancePane
text: qsTr('Disconnected') text: qsTr('Disconnected')
color: Material.accentColor color: Material.accentColor

Loading…
Cancel
Save