diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 4e1b3f3a..8b02e3d6 100644 --- 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