1
0

Make it so uncopyable seed only affects wizard

Previously it also affected the menu item Wallet->Seed, which is not the
expected or desired behavior.
This commit is contained in:
Fredrick Brennan
2015-10-19 13:27:15 +08:00
parent 88ca99c624
commit 7685758360
2 changed files with 7 additions and 7 deletions

View File

@@ -416,7 +416,7 @@ class InstallWizard(QDialog):
return True
def show_seed(self, seed, sid):
vbox = seed_dialog.show_seed_box_msg(seed, sid)
vbox = seed_dialog.show_seed_box_msg(seed, sid, paranoid=True)
vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _("Next"))))
self.set_layout(vbox)
return self.exec_()