Make two more dialogs window-modal

This commit is contained in:
Neil Booth 2015-12-22 08:02:01 +09:00
parent 44a436e964
commit 6442dd59ad
1 changed files with 2 additions and 5 deletions

View File

@ -1882,8 +1882,7 @@ class ElectrumWindow(QMainWindow, PrintError):
def new_contact_dialog(self):
d = QDialog(self)
d.setWindowTitle(_("New Contact"))
d = WindowModalDialog(self, _("New Contact"))
vbox = QVBoxLayout(d)
vbox.addWidget(QLabel(_('New Contact') + ':'))
grid = QGridLayout()
@ -2184,9 +2183,7 @@ class ElectrumWindow(QMainWindow, PrintError):
def password_dialog(self, msg=None, parent=None):
if parent == None:
parent = self
d = QDialog(parent)
d.setModal(1)
d.setWindowTitle(_("Enter Password"))
d = WindowModalDialog(parent, _("Enter Password"))
pw = QLineEdit()
pw.setEchoMode(2)
vbox = QVBoxLayout()