Browse Source

Merge pull request #3435 from sunnyville01/selectable_statusbar_text

Selectable statusbar text
3.0.x
ThomasV 7 years ago
committed by GitHub
parent
commit
e4c77d9156
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -1748,6 +1748,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
qtVersion = qVersion()
self.balance_label = QLabel("")
self.balance_label.setTextInteractionFlags(Qt.TextSelectableByMouse)
self.balance_label.setStyleSheet("""QLabel { padding: 0 }""")
sb.addWidget(self.balance_label)
self.search_box = QLineEdit()

Loading…
Cancel
Save