1
0

qt status: display "loading wallet" temporarily

this will likely only be visible for large wallets;
it gets overwritten by update_status()
This commit is contained in:
SomberNight
2018-10-07 17:59:32 +02:00
parent 70cca3bad9
commit f3f2534877

View File

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