Browse Source

hw plugins: ledger: minor fix re qt6 migration

follow-up https://github.com/spesmilo/electrum/pull/9189
master
SomberNight 1 year ago
parent
commit
15d5b96dda
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/plugins/ledger/qt.py

2
electrum/plugins/ledger/qt.py

@ -63,7 +63,7 @@ class Ledger_Handler(QtHandlerBase):
self.auth_signal.connect(self.auth_dialog)
def word_dialog(self, msg):
response = QInputDialog.getText(self.top_level_window(), "Ledger Wallet Authentication", msg, QLineEdit.Password)
response = QInputDialog.getText(self.top_level_window(), "Ledger Wallet Authentication", msg, QLineEdit.EchoMode.Password)
if not response[1]:
self.word = None
else:

Loading…
Cancel
Save