Browse Source

Merge pull request #2891 from joechrisellis/master

Added scroll pane in install wizard confirmation dialog.
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
7b2ff57d0c
  1. 6
      gui/qt/installwizard.py

6
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

Loading…
Cancel
Save