diff --git a/core/embed/rust/src/ui/model_tr/component/title.rs b/core/embed/rust/src/ui/model_tr/component/title.rs index e79a958442..b8f6f8f21d 100644 --- a/core/embed/rust/src/ui/model_tr/component/title.rs +++ b/core/embed/rust/src/ui/model_tr/component/title.rs @@ -99,6 +99,9 @@ impl Component for Title { fn event(&mut self, ctx: &mut EventCtx, event: Event) -> Option { if self.needs_marquee { if !self.marquee.is_animating() { + if matches!(Event::RequestPaint, _event) { + return None; + } self.marquee.start(ctx, Instant::now()); } return self.marquee.event(ctx, event);