tqt status: display "loading wallet" temporarily - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit f3f25348774255f1c3a3dc27822c48d761b1e87d DIR parent 70cca3bad9a40b5b5230e13c0d2fce7ae1312b53 HTML Author: SomberNight <somber.night@protonmail.com> Date: Sun, 7 Oct 2018 17:59:32 +0200 qt status: display "loading wallet" temporarily tthis will likely only be visible for large wallets; it gets overwritten by update_status() Diffstat: M electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py t@@ -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)