Browse Source

qt: set WWLabel text to be mouse-selectable by default

this lets user to copy-paste text in e.g. many wizard dialogs
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight 6 years ago
parent
commit
212ed8b18b
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 1
      electrum/gui/qt/util.py

1
electrum/gui/qt/util.py

@ -92,6 +92,7 @@ class WWLabel(QLabel):
def __init__ (self, text="", parent=None):
QLabel.__init__(self, text, parent)
self.setWordWrap(True)
self.setTextInteractionFlags(Qt.TextSelectableByMouse)
class HelpLabel(QLabel):

Loading…
Cancel
Save