From d377f93cfea7f669973cbc3dc6ed4c06fa161f77 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 22 Oct 2013 16:21:56 +0200 Subject: [PATCH] fix dialog --- gui/qt/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e944416d..83807765 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1478,6 +1478,8 @@ class ElectrumWindow(QMainWindow): main_layout.addWidget(main_text, 1, 0) main_layout.addWidget(qrw, 1, 1 ) + vbox = QVBoxLayout() + vbox.addLayout(main_layout) vbox.addLayout(close_button(dialog)) dialog.setLayout(vbox) dialog.exec_()