From bccdab758b2c5f24fc023a4b9c77914fad6a964c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 18 Oct 2016 14:07:52 +0200 Subject: [PATCH] fix #1986 --- gui/qt/main_window.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 6f22fd2d3..ced039688 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1655,15 +1655,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): grid.addWidget(line1, 1, 1) grid.addWidget(QLabel(_("Name")), 2, 0) grid.addWidget(line2, 2, 1) - vbox.addLayout(grid) vbox.addLayout(Buttons(CancelButton(d), OkButton(d))) - - if not d.exec_(): - return - - if self.set_contact(unicode(line2.text()), str(line1.text())): - self.tabs.setCurrentIndex(4) + if d.exec_(): + self.set_contact(unicode(line2.text()), str(line1.text())) def show_master_public_keys(self): dialog = WindowModalDialog(self, "Master Public Keys")