From 6442dd59ad53b9d84525461b0aacaae8c0ca5949 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 22 Dec 2015 08:02:01 +0900 Subject: [PATCH] Make two more dialogs window-modal --- gui/qt/main_window.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 5887a4744..664177500 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -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()