URI: 
       tfollow-up 553bf98664c87273f9e55b5699c44cc805eb4bf4 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 41660d26e922876dc653096a973b2ee17ac9996b
   DIR parent 553bf98664c87273f9e55b5699c44cc805eb4bf4
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Mon,  8 Jan 2018 22:36:13 +0100
       
       follow-up 553bf98664c87273f9e55b5699c44cc805eb4bf4
       
       fixes AttributeError: 'QTextEdit' object has no attribute 'text'
       
       Diffstat:
         M gui/qt/seed_dialog.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py
       t@@ -92,7 +92,7 @@ class SeedLayout(QVBoxLayout):
                self.options = options
                if title:
                    self.addWidget(WWLabel(title))
       -        self.seed_e = QTextEdit()
       +        self.seed_e = ButtonsTextEdit()
                if seed:
                    self.seed_e.setText(seed)
                else: