Browse Source

qt status: display "loading wallet" temporarily

this will likely only be visible for large wallets;
it gets overwritten by update_status()
3.3.3.1
SomberNight 6 years ago
parent
commit
f3f2534877
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qt/main_window.py

2
electrum/gui/qt/main_window.py

@ -1962,7 +1962,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
sb.setFixedHeight(35) sb.setFixedHeight(35)
qtVersion = qVersion() qtVersion = qVersion()
self.balance_label = QLabel("") self.balance_label = QLabel("Loading wallet...")
self.balance_label.setTextInteractionFlags(Qt.TextSelectableByMouse) self.balance_label.setTextInteractionFlags(Qt.TextSelectableByMouse)
self.balance_label.setStyleSheet("""QLabel { padding: 0 }""") self.balance_label.setStyleSheet("""QLabel { padding: 0 }""")
sb.addWidget(self.balance_label) sb.addWidget(self.balance_label)

Loading…
Cancel
Save