1
0

slightly smarter qr code widget that does not need size parameter

This commit is contained in:
ecdsa
2013-03-04 11:01:09 +01:00
parent df3187d9a9
commit 56588de5d9
2 changed files with 11 additions and 9 deletions

View File

@@ -1231,7 +1231,7 @@ class ElectrumWindow(QMainWindow):
main_text.setText(self.wallet.get_master_public_key())
main_text.setReadOnly(True)
main_text.setMaximumHeight(170)
qrw = QRCodeWidget(self.wallet.get_master_public_key(), 6)
qrw = QRCodeWidget(self.wallet.get_master_public_key())
ok_button = QPushButton(_("OK"))
ok_button.setDefault(True)