From 40862e89be1a2270409493369c5642b2c4921a4e Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Wed, 3 Apr 2024 13:28:10 +0200 Subject: [PATCH] fixup! feat(core/ui): rust-based UI flows --- core/embed/rust/src/ui/model_mercury/component/frame.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/rust/src/ui/model_mercury/component/frame.rs b/core/embed/rust/src/ui/model_mercury/component/frame.rs index 41b6af167..dbdd99abc 100644 --- a/core/embed/rust/src/ui/model_mercury/component/frame.rs +++ b/core/embed/rust/src/ui/model_mercury/component/frame.rs @@ -164,7 +164,7 @@ where fn render<'s>(&'s self, target: &mut impl Renderer<'s>) { self.title.render(target); - // self.subtitle.render(target); // FIXME crashes! + self.subtitle.render(target); self.button.render(target); self.content.render(target); }