1
0

Merge pull request #625 from dpdtex/DialogTitles

fixed title on 3 dialog boxes (they were showing "python" as title)
This commit is contained in:
ThomasV
2014-03-26 18:52:13 +01:00
2 changed files with 3 additions and 0 deletions

View File

@@ -1398,6 +1398,7 @@ class ElectrumWindow(QMainWindow):
def new_contact_dialog(self):
d = QDialog(self)
d.setWindowTitle(_("New Contact"))
vbox = QVBoxLayout(d)
vbox.addWidget(QLabel(_('New Contact')+':'))
@@ -1787,6 +1788,7 @@ class ElectrumWindow(QMainWindow):
def password_dialog(self ):
d = QDialog(self)
d.setModal(1)
d.setWindowTitle(_("Enter Password"))
pw = QLineEdit()
pw.setEchoMode(2)