From f145d8a6423bd1a8ff54eced54819d0b4017d6f5 Mon Sep 17 00:00:00 2001 From: obrusvit Date: Wed, 8 Jan 2025 17:56:11 +0100 Subject: [PATCH] fixup! refactor(core): consistent naming of UI models --- core/embed/rust/src/ui/model_ford/bootloader/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/embed/rust/src/ui/model_ford/bootloader/mod.rs b/core/embed/rust/src/ui/model_ford/bootloader/mod.rs index b55bea3355..ce1c02748b 100644 --- a/core/embed/rust/src/ui/model_ford/bootloader/mod.rs +++ b/core/embed/rust/src/ui/model_ford/bootloader/mod.rs @@ -26,7 +26,7 @@ use super::{ }, FG, }, - UIModelTT, + UIModelFord, }; use crate::ui::{ui_bootloader::BootloaderUI, CommonUI}; @@ -56,9 +56,9 @@ pub type BootloaderString = String<128>; const RECONNECT_MESSAGE: &str = "PLEASE RECONNECT\nTHE DEVICE"; -const SCREEN: Rect = UIModelTT::SCREEN; +const SCREEN: Rect = UIModelFord::SCREEN; -impl UIModelTT { +impl UIModelFord { fn screen_progress( text: &str, progress: u16, @@ -133,7 +133,7 @@ impl UIModelTT { } } -impl BootloaderUI for UIModelTT { +impl BootloaderUI for UIModelFord { fn screen_welcome() { let mut frame = Welcome::new(); show(&mut frame, true);