File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -661,6 +661,9 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_2(
661661 mod_trezorui_Display_cover_background_set_image );
662662
663663/// def cover_background_load_jpeg(self, jpeg_path: str) -> None:
664+ /// """
665+ /// Load JPEG image to hardware CoverBackground layer.
666+ /// """
664667STATIC mp_obj_t mod_trezorui_Display_cover_background_load_jpeg (
665668 mp_obj_t self , mp_obj_t jpeg_path ) {
666669 const char * path = mp_obj_str_get_str (jpeg_path );
Original file line number Diff line number Diff line change @@ -241,7 +241,8 @@ class Display:
241241 Move hardware CoverBackground layer to Y position.
242242 """
243243
244- def cover_background_animate_to_y (self , target_y : int , duration_ms : int ) -> None :
244+ def cover_background_animate_to_y (self , target_y : int , duration_ms : int ) ->
245+ None :
245246 """
246247 Animate hardware CoverBackground layer to Y position.
247248 """
You can’t perform that action at this time.
0 commit comments