Merge pull request #2891 from joechrisellis/master
Added scroll pane in install wizard confirmation dialog.
This commit is contained in:
@@ -423,8 +423,12 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
|
|||||||
self.confirm(message, title)
|
self.confirm(message, title)
|
||||||
|
|
||||||
def confirm(self, message, title):
|
def confirm(self, message, title):
|
||||||
|
area = QScrollArea()
|
||||||
|
label = WWLabel(message)
|
||||||
|
area.setWidget(label)
|
||||||
|
|
||||||
vbox = QVBoxLayout()
|
vbox = QVBoxLayout()
|
||||||
vbox.addWidget(WWLabel(message))
|
vbox.addWidget(area)
|
||||||
self.exec_layout(vbox, title)
|
self.exec_layout(vbox, title)
|
||||||
|
|
||||||
@wizard_dialog
|
@wizard_dialog
|
||||||
|
|||||||
Reference in New Issue
Block a user