Skip to content

Commit

Permalink
follow-up fcbd25c. fixes spesmilo#8253
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Mar 17, 2023
1 parent 0b32798 commit 7c2f13a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrum/gui/qml/components/controls/BalanceSummary.qml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Item {
GridLayout {
id: balanceLayout
columns: 3
opacity: Daemon.currentWallet.synchronizing || Network.status == 'disconnected' ? 0 : 1
opacity: Daemon.currentWallet.synchronizing || Network.server_status == 'disconnected' ? 0 : 1

Label {
font.pixelSize: constants.fontSizeXLarge
Expand Down Expand Up @@ -148,7 +148,7 @@ Item {
}

Label {
opacity: Network.status == 'disconnected' ? 1 : 0
opacity: Network.server_status == 'disconnected' ? 1 : 0
anchors.centerIn: balancePane
text: qsTr('Disconnected')
color: Material.accentColor
Expand Down

0 comments on commit 7c2f13a

Please sign in to comment.