commit 7b2ff57d0cafba6afa6f77257176e7c77947cada
parent 5ed27b1b5a09ab6f2c0da4ef31ed07337b50073d
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 21 Sep 2017 11:00:59 +0200
Merge pull request #2891 from joechrisellis/master
Added scroll pane in install wizard confirmation dialog.
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
@@ -423,8 +423,12 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
self.confirm(message, title)
def confirm(self, message, title):
+ area = QScrollArea()
+ label = WWLabel(message)
+ area.setWidget(label)
+
vbox = QVBoxLayout()
- vbox.addWidget(WWLabel(message))
+ vbox.addWidget(area)
self.exec_layout(vbox, title)
@wizard_dialog