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:
parent
b28eba513b
commit
319bcc8cb0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user