diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/select_word_screen.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/select_word_screen.rs index 71ccf91a65..1e665d7fdf 100644 --- a/core/embed/rust/src/ui/layout_eckhart/firmware/select_word_screen.rs +++ b/core/embed/rust/src/ui/layout_eckhart/firmware/select_word_screen.rs @@ -105,6 +105,9 @@ impl Component for SelectWordScreen { impl crate::trace::Trace for SelectWordScreen { fn trace(&self, t: &mut dyn crate::trace::Tracer) { t.component("SelectWordScreen"); + t.child("Header", &self.header); + t.child("subtitle", &self.description); + t.child("Content", &self.menu); } } diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/share_words.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/share_words.rs index 4434bfa7f7..6cac511fcb 100644 --- a/core/embed/rust/src/ui/layout_eckhart/firmware/share_words.rs +++ b/core/embed/rust/src/ui/layout_eckhart/firmware/share_words.rs @@ -192,10 +192,10 @@ impl<'a> Component for ShareWordsScreen<'a> { impl<'a> crate::trace::Trace for ShareWordsScreen<'a> { fn trace(&self, t: &mut dyn crate::trace::Tracer) { t.component("TextComponent"); - self.header.trace(t); - self.content.trace(t); - self.hint.trace(t); - self.action_bar.trace(t); + t.child("Header", &self.header); + t.child("Content", &self.content); + t.child("Hint", &self.hint); + t.child("ActionBar", &self.action_bar); } } diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs index a25f9c16eb..a00b6cf0d3 100644 --- a/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs +++ b/core/embed/rust/src/ui/layout_eckhart/firmware/text_screen.rs @@ -161,14 +161,14 @@ where fn trace(&self, t: &mut dyn crate::trace::Tracer) { t.component("TextComponent"); if let Some(header) = self.header.as_ref() { - header.trace(t); + t.child("Header", header); } - self.content.trace(t); + t.child("Content", &self.content); if let Some(hint) = self.hint.as_ref() { - hint.trace(t); + t.child("Hint", hint); } if let Some(ab) = self.action_bar.as_ref() { - ab.trace(t); + t.child("ActionBar", ab); } } } diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu_screen.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu_screen.rs index ec54150930..f27f6e284e 100644 --- a/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu_screen.rs +++ b/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu_screen.rs @@ -187,5 +187,7 @@ impl Swipable for VerticalMenuScreen { impl crate::trace::Trace for VerticalMenuScreen { fn trace(&self, t: &mut dyn crate::trace::Tracer) { t.component("VerticalMenuScreen"); + t.child("Header", &self.header); + t.child("Menu", &self.menu); } }