diff --git a/src/krux/pages/login.py b/src/krux/pages/login.py index 28019df5..869f4b11 100644 --- a/src/krux/pages/login.py +++ b/src/krux/pages/login.py @@ -257,8 +257,10 @@ def _load_key_from_words(self, words, charset=LETTERS, new=False): from .mnemonic_editor import MnemonicEditor - mnemonic_editor = MnemonicEditor(self.ctx, mnemonic, new) - mnemonic = mnemonic_editor.edit() + # If the mnemonic is not hidden, show the mnemonic editor + if not Settings().security.hide_mnemonic: + mnemonic_editor = MnemonicEditor(self.ctx, mnemonic, new) + mnemonic = mnemonic_editor.edit() if mnemonic is None: return MENU_CONTINUE self.ctx.display.clear()