URI: 
       tMerge pull request #2891 from joechrisellis/master - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 7b2ff57d0cafba6afa6f77257176e7c77947cada
   DIR parent 5ed27b1b5a09ab6f2c0da4ef31ed07337b50073d
  HTML 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:
         M gui/qt/installwizard.py             |       6 +++++-
       
       1 file changed, 5 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
       t@@ -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