From 54df69a40744b7bc25d16798064df55d4bc9930e Mon Sep 17 00:00:00 2001 From: bithobbes Date: Wed, 13 Sep 2017 10:13:21 +0200 Subject: [PATCH] client.py: matrix recovery info: mention backspace It is not obvious that it is possible to go back by backspace. Knowing this makes data entry much more comfortable. --- trezorlib/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index 2bfe82912..62a2bb737 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -241,7 +241,8 @@ class TextUIMixin(object): def callback_RecoveryMatrix(self, msg): if self.recovery_matrix_first_pass: self.recovery_matrix_first_pass = False - log("Use the numeric keypad to describe positions. For the word list use only left and right keys. The layout is:") + log("Use the numeric keypad to describe positions. For the word list use only left and right keys.") + log("Use backspace to correct an entry. The keypad layout is:") log(" 7 8 9 7 | 9") log(" 4 5 6 4 | 6") log(" 1 2 3 1 | 3")