tqt seed dialog, (minor) class attr -> instance attr - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit e90a31ef2346b5f189056b53576ac91fc6e32110 DIR parent eb64571341a26dd4974f904edf87f9b9e5c78ee9 HTML Author: SomberNight <somber.night@protonmail.com> Date: Wed, 25 Apr 2018 00:20:06 +0200 qt seed dialog, (minor) class attr -> instance attr Diffstat: M gui/qt/seed_dialog.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- DIR diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py t@@ -51,9 +51,6 @@ def seed_warning_msg(seed): class SeedLayout(QVBoxLayout): - #options - is_bip39 = False - is_ext = False def seed_options(self): dialog = QDialog() t@@ -124,6 +121,10 @@ class SeedLayout(QVBoxLayout): hbox.addStretch(1) self.seed_type_label = QLabel('') hbox.addWidget(self.seed_type_label) + + # options + self.is_bip39 = False + self.is_ext = False if options: opt_button = EnterButton(_('Options'), self.seed_options) hbox.addWidget(opt_button)