1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-03 21:32:33 +00:00

fix(core/ui): repaint the title of Progress layout when requested

This commit is contained in:
matejcik 2023-11-08 13:17:11 +01:00 committed by M1nd3r
parent 98a6a2149c
commit fad653a38b
2 changed files with 6 additions and 0 deletions

View File

@ -127,6 +127,9 @@ impl Component for Progress {
self.description_pad.clear(); self.description_pad.clear();
} }
}); });
} else {
self.title.event(ctx, event);
self.description.event(ctx, event);
} }
None None
} }

View File

@ -87,6 +87,9 @@ impl Component for Progress {
} }
}); });
} }
} else {
self.title.event(ctx, event);
self.description.event(ctx, event);
} }
None None
} }