Skip to content

Commit a8b4519

Browse files
authored
fix(legacy): fix passphrase display issue (#577)
1 parent 6f9f366 commit a8b4519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

legacy/firmware/layout2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ void layoutShowPassphrase(const char *passphrase) {
16721672
oledClear();
16731673
}
16741674
const char **str =
1675-
split_message((const uint8_t *)passphrase, strlen(passphrase), 21);
1675+
split_message((const uint8_t *)passphrase, strlen(passphrase), 20);
16761676
for (int i = 0; i < 3; i++) {
16771677
oledDrawString(0, (i + 1) * 9, str[i], FONT_FIXED);
16781678
}

0 commit comments

Comments
 (0)