@@ -8,8 +8,8 @@ use include_gif::include_gif;
8
8
use ledger_device_sdk:: io:: * ;
9
9
use ledger_device_sdk:: nbgl:: {
10
10
init_comm, CenteredInfo , CenteredInfoStyle , Field , InfoButton , InfoLongPress , InfosList ,
11
- NbglGenericReview , NbglGlyph , NbglPageContent , NbglStatus , NbglChoice , TagValueConfirm , TagValueList ,
12
- TuneIndex ,
11
+ NbglChoice , NbglGenericReview , NbglGlyph , NbglPageContent , NbglStatus , TagValueConfirm ,
12
+ TagValueList , TuneIndex ,
13
13
} ;
14
14
use ledger_secure_sdk_sys:: * ;
15
15
@@ -90,7 +90,7 @@ extern "C" fn sample_main() {
90
90
. add_content ( NbglPageContent :: InfosList ( infos_list) ) ;
91
91
92
92
const IMPORTANT : NbglGlyph =
93
- NbglGlyph :: from_include ( include_gif ! ( "icons/Important_Circle_64px.png" , NBGL ) ) ;
93
+ NbglGlyph :: from_include ( include_gif ! ( "icons/Important_Circle_64px.png" , NBGL ) ) ;
94
94
95
95
let mut show_tx = true ;
96
96
let mut status_text = "Example rejected" ;
@@ -115,5 +115,7 @@ extern "C" fn sample_main() {
115
115
. not ( ) ;
116
116
}
117
117
}
118
- NbglStatus :: new ( ) . text ( status_text) . show ( status_text == "Example confirmed" ) ;
118
+ NbglStatus :: new ( )
119
+ . text ( status_text)
120
+ . show ( status_text == "Example confirmed" ) ;
119
121
}
0 commit comments