1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-05 18:06:07 +00:00

fix(eckhart): fix number input screen for double-digit numbers

This commit is contained in:
Lukas Bielesch 2025-03-19 11:23:26 +01:00
parent b28eba513b
commit 319bcc8cb0

View File

@ -190,7 +190,7 @@ impl NumberInput {
}
fn render_number<'s>(&'s self, target: &mut impl Renderer<'s>) {
let mut buf = [0u8; 1];
let mut buf = [0u8; 3];
if let Some(text) = strutil::format_i64(self.value as i64, &mut buf) {
let font = fonts::FONT_SATOSHI_EXTRALIGHT_72;