add window title for show_private_key and show_public_key

This commit is contained in:
Tafelpoot 2014-10-27 16:10:52 +01:00
parent 063fc4bb2e
commit 0216a892da
1 changed files with 2 additions and 0 deletions

View File

@ -1915,6 +1915,7 @@ class ElectrumWindow(QMainWindow):
d = QDialog(self)
d.setMinimumSize(600, 200)
d.setModal(1)
d.setWindowTitle(_("Public key"))
vbox = QVBoxLayout()
vbox.addWidget( QLabel(_("Address") + ': ' + address))
vbox.addWidget( QLabel(_("Public key") + ':'))
@ -1937,6 +1938,7 @@ class ElectrumWindow(QMainWindow):
d = QDialog(self)
d.setMinimumSize(600, 200)
d.setModal(1)
d.setWindowTitle(_("Private key"))
vbox = QVBoxLayout()
vbox.addWidget( QLabel(_("Address") + ': ' + address))
vbox.addWidget( QLabel(_("Private key") + ':'))