commit f3f25348774255f1c3a3dc27822c48d761b1e87d
parent 70cca3bad9a40b5b5230e13c0d2fce7ae1312b53
Author: SomberNight <somber.night@protonmail.com>
Date: Sun, 7 Oct 2018 17:59:32 +0200
qt status: display "loading wallet" temporarily
this will likely only be visible for large wallets;
it gets overwritten by update_status()
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py
@@ -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)