1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-08-01 03:18:12 +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
parent 5a4aaa79fc
commit 946f73bd69
2 changed files with 6 additions and 0 deletions

View File

@ -115,6 +115,9 @@ where
} }
}); });
} }
} else {
self.title.event(ctx, event);
self.description.event(ctx, event);
} }
None None
} }

View File

@ -99,6 +99,9 @@ where
} }
}); });
} }
} else {
self.title.event(ctx, event);
self.description.event(ctx, event);
} }
None None
} }